Commit 1758e5ab by Timothée Peignier

move changelog outside docs

parent 80e47410
Changelog .. :changelog:
=========
History
=======
1.2.8 1.2.8
......
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
...@@ -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
================== ==================
......
...@@ -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,
......
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