Skip to content
This repository has been archived by the owner on Jan 5, 2021. It is now read-only.

Commit

Permalink
fixed classifiers, changed author by maintainer
Browse files Browse the repository at this point in the history
  • Loading branch information
fzumstein committed Oct 19, 2016
1 parent 5d8a0f8 commit a68709d
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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')
Expand All @@ -44,12 +42,12 @@
name='IbPy2',
version=version,
description=doclines[0],
author='Troy Melhase',
author_email='[email protected]',
maintainer='Felix Zumstein',
maintainer_email='[email protected]',
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']
)

0 comments on commit a68709d

Please sign in to comment.