From 7fdbe73eac46c1de4db7f3c8456fac2ba28d1ce4 Mon Sep 17 00:00:00 2001 From: Marek Marecki Date: Fri, 8 Jan 2016 23:58:38 +0100 Subject: [PATCH] New setup.py --- setup.py | 33 ++++++++++++++++++++++++--------- 1 file changed, 24 insertions(+), 9 deletions(-) diff --git a/setup.py b/setup.py index 32a21fd..9b3e6a2 100644 --- a/setup.py +++ b/setup.py @@ -1,10 +1,25 @@ from setuptools import setup, find_packages -setup(name='diaspy', - version='0.4.3', - author='Marek Marecki', - author_email='hi@ozro.pw', - url='https://github.com/marekjm/diaspy', - description='Unofficial Python API to the social network Diaspora*', - packages=find_packages(), - install_requires=['requests'] - ) + +setup( + name='diaspy-api', + version='0.4.3', + author='Marek Marecki', + author_email='marekjm@ozro.pw', + url='https://github.com/marekjm/diaspy', + license='GNU GPL v3', + description='Unofficial Python API for Diaspora*', + keywords='diaspy diaspora social network api', + classifiers = [ + 'Development Status :: 4 - Beta', + 'Intended Audience :: Developers', + 'Intended Audience :: Information Technology', + 'License :: OSI Approved :: GNU General Public License v3 (GPLv3)', + 'Programming Language :: Python :: 3 :: Only', + 'Programming Language :: Python :: Implementation :: CPython', + 'Topic :: Software Development :: Libraries', + 'Topic :: Software Development :: Libraries :: Python Modules', + 'Topic :: Utilities', + ], + packages=find_packages(), + install_requires=['requests'] +) -- 2.25.1