Merge pull request #134 from hydrosquall/feature/update-pypi-classifiers

Promote library to beta status, update supported python versions
This commit is contained in:
Cameron Yick
2018-07-07 17:15:02 -04:00
committed by GitHub

View File

@@ -60,21 +60,20 @@ setup(
extras_require={'pandas': ['pandas>=0.18']}, extras_require={'pandas': ['pandas>=0.18']},
license="MIT license", license="MIT license",
zip_safe=False, zip_safe=False,
keywords=['tiingo', 'finance', 'stocks'], keywords=['tiingo', 'finance', 'stocks', 'rest'],
classifiers=[ classifiers=[
'Development Status :: 3 - Alpha', 'Development Status :: 4 - Beta',
'Intended Audience :: Developers', 'Intended Audience :: Developers',
'Intended Audience :: Financial and Insurance Industry', 'Intended Audience :: Financial and Insurance Industry',
'License :: OSI Approved :: MIT License', 'License :: OSI Approved :: MIT License',
'Natural Language :: English', 'Natural Language :: English',
'Topic :: Office/Business :: Financial :: Investment', 'Topic :: Office/Business :: Financial :: Investment',
"Programming Language :: Python :: 2", "Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
], ],
test_suite='tests', test_suite='tests',
tests_require=test_requirements, tests_require=test_requirements,