From a68709d590ffea3ccbaf6f91fcf49b74d640f1d6 Mon Sep 17 00:00:00 2001 From: Felix Zumstein Date: Wed, 19 Oct 2016 18:09:11 +0200 Subject: [PATCH] fixed classifiers, changed author by maintainer --- setup.py | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/setup.py b/setup.py index 47e873d..b635b3a 100755 --- a/setup.py +++ b/setup.py @@ -12,8 +12,7 @@ from distutils.core import setup -classifiers = """ -Development Status :: 5 - Production/Stable +classifiers = """Development Status :: 5 - Production/Stable Intended Audience :: Developers License :: OSI Approved :: BSD License Natural Language :: English @@ -23,8 +22,7 @@ Topic :: Office/Business :: Financial :: Investment Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator Topic :: Software Development :: Libraries -Topic :: Software Development :: Libraries :: Python Modules -""" +Topic :: Software Development :: Libraries :: Python Modules""" doclines = __doc__.split('\n') @@ -44,12 +42,12 @@ name='IbPy2', version=version, description=doclines[0], - author='Troy Melhase', - author_email='troy@gci.net', + maintainer='Felix Zumstein', + maintainer_email='felix.zumstein@zoomeranalytics.com', url='https://github.com/blampe/IbPy', license='BSD License', packages=['ib', 'ib/lib', 'ib/ext', 'ib/opt', 'ib/sym'], - classifiers=filter(None, classifiers.split('\n')), + classifiers=classifiers.split('\n'), long_description='\n'.join(doclines[2:]), platforms=['any'] )