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
f78a3ee1
Commit
f78a3ee1
authored
Mar 14, 2014
by
Timothée Peignier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix setup.py. close #324
parent
18553293
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
2 deletions
+4
-2
setup.py
+4
-2
No files found.
setup.py
View file @
f78a3ee1
# -*- coding: utf-8 -*-
import
io
from
setuptools
import
setup
,
find_packages
...
...
@@ -6,8 +8,8 @@ setup(
name
=
'django-pipeline'
,
version
=
'1.3.22'
,
description
=
'Pipeline is an asset packaging library for Django.'
,
long_description
=
open
(
'README.rst
'
)
.
read
()
+
'
\n\n
'
+
open
(
'HISTORY.rst
'
)
.
read
(),
long_description
=
io
.
open
(
'README.rst'
,
encoding
=
'utf-8
'
)
.
read
()
+
'
\n\n
'
+
io
.
open
(
'HISTORY.rst'
,
encoding
=
'utf-8
'
)
.
read
(),
author
=
'Timothée Peignier'
,
author_email
=
'timothee.peignier@tryphon.org'
,
url
=
'https://github.com/cyberdelia/django-pipeline'
,
...
...
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