forked from intrinio/intrinio-realtime-python-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (22 loc) · 895 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
24
from setuptools import setup
def readme():
with open('README.md') as f:
return f.read()
setup(
name = 'intriniorealtime',
packages = ['intriniorealtime'],
version = '2.2.0',
author = 'Intrinio Python SDK for Real-Time Stock Prices',
author_email = '[email protected]',
url = 'https://intrinio.com',
description = 'Intrinio Python SDK for Real-Time Stock Prices',
long_description = readme(),
install_requires = ['requests==2.19.1','websocket-client==0.48.0'],
python_requires = '~=3.6',
download_url = 'https://github.com/intrinio/intrinio-realtime-python-sdk/archive/v2.0.0.tar.gz',
keywords = ['realtime','stock prices','intrinio','stock market','stock data','financial'],
classifiers = [
'Intended Audience :: Financial and Insurance Industry',
'Topic :: Office/Business :: Financial :: Investment'
]
)