Skip to content

Commit

Permalink
improve setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
cyberdelia committed May 12, 2012
1 parent 88c2797 commit 8b70515
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
2 changes: 0 additions & 2 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
Pipeline
--------
Copyright (©) 2008 Andreas Pelme <andreas@pelme.se>
Copyright (©) 2011-2012 Timothée Peignier <timothee.peignier@tryphon.org>

Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@ recursive-include pipeline/templates *.html
include docs/*
include AUTHORS
include LICENSE
include README.rst
4 changes: 2 additions & 2 deletions README.md → README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@ Pipeline

Pipeline is an asset packaging library for Django, providing both CSS and JavaScript concatenation and compression, built-in JavaScript template support, and optional data-URI image and font embedding.

To install it :
To install it : ::

pip install django-pipeline


For documentation, usage, and examples, see :
http://django-pipeline.readthedocs.org/
http://django-pipeline.readthedocs.org

To suggest a feature or report a bug :
https://github.com/cyberdelia/django-pipeline/issues
11 changes: 8 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,21 @@
from setuptools import setup, find_packages


with open('README.rst') as f:
readme = f.read()

with open('LICENSE') as f:
license = f.read()

setup(
name='django-pipeline',
version='1.2.6',
description='Pipeline is an asset packaging library for Django.',
long_description="""Pipeline is an asset packaging library for Django, providing
both CSS and JavaScript concatenation and compression, built-in JavaScript
template support, and optional data-URI image and font embedding.""",
long_description=readme,
author='Timothée Peignier',
author_email='timothee.peignier@tryphon.org',
url='https://github.com/cyberdelia/django-pipeline',
license=license,
packages=find_packages(),
zip_safe=False,
include_package_data=True,
Expand Down

0 comments on commit 8b70515

Please sign in to comment.