From acb8777ccf2499681bde87d76ca780b61219699c Mon Sep 17 00:00:00 2001 From: Elizaveta Prosvirina Date: Mon, 26 Aug 2019 13:22:14 +0300 Subject: [PATCH] update setup.py --- setup.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/setup.py b/setup.py index 0597caf..4d192a1 100644 --- a/setup.py +++ b/setup.py @@ -1,12 +1,28 @@ from setuptools import find_packages from setuptools import setup +with open("README.md", "r") as fh: + long_description = fh.read() + setup( name='async_blp', description='Async wrapper for Bloomberg Open API', + long_description=long_description, + long_description_content_type="text/markdown", license='MIT', platforms='any', packages=find_packages(exclude=['docs', 'tests', 'examples']), install_requires=['pandas>=0.20.0'], version='0.0.1', + author="Rocksci", + url="https://github.com/rockscie/async_blp", + classifiers=[ + "Programming Language :: Python :: 3.7", + "License :: OSI Approved :: MIT License", + "Operating System :: OS Independent", + "Development Status :: 3 - Alpha", + "Intended Audience :: Developers", + "Intended Audience :: Financial and Insurance Industry", + "Topic :: Office/Business :: Financial", + ], )