Skip to content

Commit

Permalink
update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Tymeade committed Aug 26, 2019
1 parent 9c512c1 commit acb8777
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -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",
],
)

0 comments on commit acb8777

Please sign in to comment.