diff options
author | Matt Lenc <mattl@incuna.com> | 2014-06-18 11:35:49 +0100 |
---|---|---|
committer | Matt Lenc <mattl@incuna.com> | 2014-06-18 11:35:49 +0100 |
commit | 39b76d8b55506bcddf40d6e76508dd7de272c988 (patch) | |
tree | 6b930bcdebfcff41b9c10bdcbca17a8685280be1 | |
parent | cc6e1753a4d388e294e14c4c0805052ccd1be381 (diff) | |
download | django-wkhtmltopdf-39b76d8b55506bcddf40d6e76508dd7de272c988.tar.gz django-wkhtmltopdf-39b76d8b55506bcddf40d6e76508dd7de272c988.tar.bz2 django-wkhtmltopdf-39b76d8b55506bcddf40d6e76508dd7de272c988.zip |
Update setup.py
-rw-r--r-- | LICENSE | 2 | ||||
-rw-r--r-- | setup.py | 20 |
2 files changed, 18 insertions, 4 deletions
@@ -1,4 +1,4 @@ -Copyright (c) 2012, Incuna Ltd +Copyright (c) 2014, Incuna Ltd All rights reserved. Redistribution and use in source and binary forms, with or without modification, @@ -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'], + install_requires=['Django>=1.4'], zip_safe=False, + classifiers=[ + 'Development Status :: 5 - Production/Stable', + 'Intended Audience :: Developers', + 'Topic :: Software Development', + 'Topic :: Utilities', + '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', + ], + keywords='django wkhtmltopdf pdf', ) - |