diff options
author | Charlie Denton <charlie@meshy.co.uk> | 2014-06-19 11:46:18 +0100 |
---|---|---|
committer | Charlie Denton <charlie@meshy.co.uk> | 2014-06-19 11:46:18 +0100 |
commit | 8e615cf00343d61e2bf3716c66888758aeb878ed (patch) | |
tree | 9f6f4ada901749eaeddb32ac75c0955a5327c2b5 /setup.py | |
parent | 0de693a16fa35525d3adb115bf8bf21c76581d0b (diff) | |
parent | 301bef0d6931582583a156b3195b8b13f54d2875 (diff) | |
download | django-wkhtmltopdf-8e615cf00343d61e2bf3716c66888758aeb878ed.tar.gz django-wkhtmltopdf-8e615cf00343d61e2bf3716c66888758aeb878ed.tar.bz2 django-wkhtmltopdf-8e615cf00343d61e2bf3716c66888758aeb878ed.zip |
Merge pull request #48 from incuna/python3
Add Python3 support
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 20 |
1 files changed, 17 insertions, 3 deletions
@@ -8,12 +8,26 @@ setup( packages=find_packages(), include_package_data=True, version=wkhtmltopdf.__version__, - description='Converts html to PDF using http://code.google.com/p/wkhtmltopdf/.', + description='Converts HTML to PDF using wkhtmltopdf.', long_description=open('README.rst').read(), + license='MIT', author=wkhtmltopdf.__author__, author_email='admin@incuna.com', url='https://github.com/incuna/django-wkhtmltopdf', - install_requires=['Django>=1.3'], zip_safe=False, + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Environment :: Web Environment', + 'Intended Audience :: Developers', + 'Operating System :: OS Independent', + 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python :: 2', + 'Programming Language :: Python :: 2.6', + 'Programming Language :: Python :: 2.7', + 'Programming Language :: Python :: 3', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Framework :: Django', + ], + keywords='django wkhtmltopdf pdf', ) - |