Package for pypi

This commit is contained in:
Florent Lebreton
2014-11-27 10:48:10 +01:00
parent 11ae827643
commit bbde0d7005
4 changed files with 23 additions and 7 deletions

View File

@@ -8,10 +8,11 @@ setup(
version='0.7.6',
author='Florent Lebreton',
author_email='florent.lebreton@makina-corpus.com',
url='https://github.com/makinacorpus/django-jsignature',
download_url="http://pypi.python.org/pypi/django-jsignature/",
url='https://github.com/fle/django-jsignature',
download_url="https://github.com/fle/django-jsignature/tarball/0.7.6",
description="Use jSignature jQuery plugin in your django projects",
long_description=open(os.path.join(here, 'README.rst')).read(),
long_description=open(os.path.join(here, 'README.rst')).read() + '\n\n' +
open(os.path.join(here, 'CHANGES')).read(),
license='LPGL, see LICENSE file.',
install_requires=['Django'],
packages=find_packages(),
@@ -24,6 +25,6 @@ setup(
'Intended Audience :: Developers',
'Environment :: Web Environment',
'Framework :: Django',
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Programming Language :: Python :: 2.7'],
)