Commit 8b705150 by Timothée Peignier

improve setup.py

parent 88c27974
Pipeline
--------
Copyright (©) 2008 Andreas Pelme <andreas@pelme.se>
Copyright (©) 2011-2012 Timothée Peignier <timothee.peignier@tryphon.org>
......
......@@ -2,3 +2,4 @@ recursive-include pipeline/templates *.html
include docs/*
include AUTHORS
include LICENSE
include README.rst
......@@ -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
......@@ -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,
......
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