diff --git a/setup.py b/setup.py index dbd339b..1436467 100644 --- a/setup.py +++ b/setup.py @@ -23,22 +23,22 @@ setup( # 3 - Alpha # 4 - Beta # 5 - Production/Stable - 'Development Status :: 5 - Stable', + 'Development Status :: 5 - Production/Stable', # Project Audience 'Intended Audience :: Developers', 'Topic :: Software Development :: Build Tools', # Project License - 'License :: OSI Approved :: Apache 2.0', + 'License :: OSI Approved :: Apache Software License', # Python versions (not enforced) 'Programming Language :: Python :: 3.0', - 'Programming Language :: Python :: 3.2.0', - 'Programming Language :: Python :: 3.3.0', - 'Programming Language :: Python :: 3.4.0', - 'Programming Language :: Python :: 3.5.0', - 'Programming Language :: Python :: 3.6.0', - 'Programming Language :: Python :: 3.7.0', + 'Programming Language :: Python :: 3.2', + 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', ], keywords='bitfinex,api,trading', packages=find_packages(exclude=['examples', 'tests', 'docs']),