From c8e90b48a6b6c2ff8e5e55f207a7daa4b2f37c8c Mon Sep 17 00:00:00 2001 From: idle sign Date: Wed, 17 Jun 2015 20:29:27 +0600 Subject: [PATCH] setup.py updated. --- setup.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index e3424d2..61119af 100755 --- a/setup.py +++ b/setup.py @@ -10,14 +10,19 @@ setup( name='django-sitemetrics', version='.'.join(map(str, VERSION)), + url='http://github.com/idlesign/django-sitemetrics', + description='Reusable application for Django providing easy means to integrate site metrics counters into your sites', long_description=readme, - author="Igor 'idle sign' Starikov", + license='BSD 3-Clause License', + + author='Igor `idle sign` Starikov', author_email='idlesign@yandex.ru', - url='http://github.com/idlesign/django-sitemetrics', + packages=['sitemetrics'], include_package_data=True, zip_safe=False, + classifiers=[ 'Development Status :: 4 - Beta', 'Environment :: Web Environment', @@ -30,5 +35,6 @@ 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', ], )