Commit 1758e5ab by Timothée Peignier

move changelog outside docs

parent 80e47410
Changelog
=========
.. :changelog:
History
=======
1.2.8
......
recursive-include pipeline/templates *.html
include docs/*
include AUTHORS
include LICENSE
include README.rst
include AUTHORS LICENSE README.rst HISTORY.rst
......@@ -25,7 +25,7 @@ Table Of Contents
storages
signals
using
changelog
Indices and tables
==================
......
......@@ -2,18 +2,16 @@
from setuptools import setup, find_packages
readme = open('README.rst').read()
license = open('LICENSE').read()
setup(
name='django-pipeline',
version='1.2.8',
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_email='timothee.peignier@tryphon.org',
url='https://github.com/cyberdelia/django-pipeline',
license=license,
license=open('LICENSE').read(),
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