From cbe84077cddfebd95345808bd36947674a067cc7 Mon Sep 17 00:00:00 2001 From: Frank Milthaler Date: Wed, 30 Jan 2019 14:29:00 +0000 Subject: [PATCH] updating setup.py: setting intended audience, adding link to documentation, updating release download to 0.1.1 --- setup.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 1dd56116..b72d44b8 100644 --- a/setup.py +++ b/setup.py @@ -12,12 +12,15 @@ long_description=long_description, long_description_content_type='text/markdown', url='https://github.com/fmilthaler/FinQuant', - download_url = 'https://github.com/fmilthaler/FinQuant/archive/v0.1.tar.gz', + download_url = 'https://github.com/fmilthaler/FinQuant/archive/v0.1.1.tar.gz', license='MIT', packages=setuptools.find_packages(), classifiers=[ 'Development Status :: 4 - Beta', + 'Intended Audience :: Education', 'Intended Audience :: Financial and Insurance Industry', + 'Intended Audience :: Other Audience', + 'Intended Audience :: Science/Research', 'Programming Language :: Python :: 3 :: Only', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', @@ -29,5 +32,6 @@ 'efficient frontier', 'quantitative', 'quant'], python_requires='>=3.5', install_requires=['quandl', 'numpy', 'pandas', 'scipy', - 'matplotlib', 'pytest'] + 'matplotlib', 'pytest'], + project_urls={'Documentation': 'https://finquant.readthedocs.io'} )