Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
D
django-pipeline
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
django-pipeline
Commits
1758e5ab
Commit
1758e5ab
authored
May 30, 2012
by
Timothée Peignier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
move changelog outside docs
parent
80e47410
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
9 additions
and
12 deletions
+9
-12
HISTORY.rst
+4
-2
MANIFEST.in
+1
-4
docs/index.rst
+1
-1
setup.py
+3
-5
No files found.
docs/changelog
.rst
→
HISTORY
.rst
View file @
1758e5ab
Changelog
.. :changelog:
=========
History
=======
1.2.8
1.2.8
...
...
MANIFEST.in
View file @
1758e5ab
recursive-include pipeline/templates *.html
recursive-include pipeline/templates *.html
include docs/*
include AUTHORS LICENSE README.rst HISTORY.rst
include AUTHORS
include LICENSE
include README.rst
docs/index.rst
View file @
1758e5ab
...
@@ -25,7 +25,7 @@ Table Of Contents
...
@@ -25,7 +25,7 @@ Table Of Contents
storages
storages
signals
signals
using
using
changelog
Indices and tables
Indices and tables
==================
==================
...
...
setup.py
View file @
1758e5ab
...
@@ -2,18 +2,16 @@
...
@@ -2,18 +2,16 @@
from
setuptools
import
setup
,
find_packages
from
setuptools
import
setup
,
find_packages
readme
=
open
(
'README.rst'
)
.
read
()
license
=
open
(
'LICENSE'
)
.
read
()
setup
(
setup
(
name
=
'django-pipeline'
,
name
=
'django-pipeline'
,
version
=
'1.2.8'
,
version
=
'1.2.8'
,
description
=
'Pipeline is an asset packaging library for Django.'
,
description
=
'Pipeline is an asset packaging library for Django.'
,
long_description
=
readme
,
long_description
=
open
(
'README.rst'
)
.
read
()
+
'
\n\n
'
+
open
(
'HISTORY.rst'
)
.
read
(),
author
=
'Timothée Peignier'
,
author
=
'Timothée Peignier'
,
author_email
=
'timothee.peignier@tryphon.org'
,
author_email
=
'timothee.peignier@tryphon.org'
,
url
=
'https://github.com/cyberdelia/django-pipeline'
,
url
=
'https://github.com/cyberdelia/django-pipeline'
,
license
=
license
,
license
=
open
(
'LICENSE'
)
.
read
()
,
packages
=
find_packages
(),
packages
=
find_packages
(),
zip_safe
=
False
,
zip_safe
=
False
,
include_package_data
=
True
,
include_package_data
=
True
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment