Commit 8b705150 by Timothée Peignier

improve setup.py

parent 88c27974
Pipeline
--------
Copyright (©) 2008 Andreas Pelme <andreas@pelme.se> Copyright (©) 2008 Andreas Pelme <andreas@pelme.se>
Copyright (©) 2011-2012 Timothée Peignier <timothee.peignier@tryphon.org> Copyright (©) 2011-2012 Timothée Peignier <timothee.peignier@tryphon.org>
......
...@@ -2,3 +2,4 @@ recursive-include pipeline/templates *.html ...@@ -2,3 +2,4 @@ recursive-include pipeline/templates *.html
include docs/* include docs/*
include AUTHORS include AUTHORS
include LICENSE include LICENSE
include README.rst
...@@ -3,13 +3,13 @@ Pipeline ...@@ -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. 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 pip install django-pipeline
For documentation, usage, and examples, see : For documentation, usage, and examples, see :
http://django-pipeline.readthedocs.org/ http://django-pipeline.readthedocs.org
To suggest a feature or report a bug : To suggest a feature or report a bug :
https://github.com/cyberdelia/django-pipeline/issues https://github.com/cyberdelia/django-pipeline/issues
...@@ -2,16 +2,21 @@ ...@@ -2,16 +2,21 @@
from setuptools import setup, find_packages from setuptools import setup, find_packages
with open('README.rst') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup( setup(
name='django-pipeline', name='django-pipeline',
version='1.2.6', version='1.2.6',
description='Pipeline is an asset packaging library for Django.', description='Pipeline is an asset packaging library for Django.',
long_description="""Pipeline is an asset packaging library for Django, providing long_description=readme,
both CSS and JavaScript concatenation and compression, built-in JavaScript
template support, and optional data-URI image and font embedding.""",
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,
packages=find_packages(), packages=find_packages(),
zip_safe=False, zip_safe=False,
include_package_data=True, include_package_data=True,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment