forked from s0h3ck/finnhub-api-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
27 lines (24 loc) · 818 Bytes
/
setup.py
File metadata and controls
27 lines (24 loc) · 818 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
from setuptools import setup
with open("README.md", "r") as f:
long_description = f.read()
setup(
name='finnhub',
version='0.1.1',
author='s0h3ck',
author_email='s0h3ck@gmail.com',
description='Finnhub API Python client',
long_description=long_description,
long_description_content_type='text/markdown',
packages=['finnhub'],
url='https://github.com/s0h3ck/finnhub-api-python-client/',
license='MIT',
install_requires=['requests'],
keywords='finnhub api stocks cryptocurrency',
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)