forked from Benzinga/benzinga-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
23 lines (23 loc) · 843 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/usr/bin/env python
with open("README.md", "r") as fh:
long_description = fh.read()
import setuptools
setuptools.setup(
name='benzinga',
version='1.21',
description='Python Client Library for Benzinga Data',
author='Benzinga Developers',
author_email='[email protected]',
url='https://github.com/Benzinga/benzinga-python-client',
packages=["benzinga"],
install_requires=['requests',
"structlog",
"urllib3==1.25.10"],
long_description = long_description,
long_description_content_type="text/markdown",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)