From 39b76d8b55506bcddf40d6e76508dd7de272c988 Mon Sep 17 00:00:00 2001 From: Matt Lenc Date: Wed, 18 Jun 2014 11:35:49 +0100 Subject: Update setup.py --- LICENSE | 2 +- setup.py | 20 +++++++++++++++++--- 2 files changed, 18 insertions(+), 4 deletions(-) diff --git a/LICENSE b/LICENSE index fe36c19..a7d567e 100644 --- a/LICENSE +++ b/LICENSE @@ -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, diff --git a/setup.py b/setup.py index abc3591..611ebb9 100644 --- a/setup.py +++ b/setup.py @@ -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', ) - -- cgit v1.2.3