forked from boyan-soubachov/tastyworks_api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
45 lines (39 loc) · 1.1 KB
/
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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
from setuptools import setup, find_packages
REQUIRES = [
'aiocometd',
'aiohttp<4',
'dataclasses',
'requests<3',
]
TEST_REQUIRES = [
'pytest'
]
with open('README.md', 'r', encoding='utf8') as file:
long_desc = file.read()
setup(
name='tastyworks',
author='Boyan Soubachov',
author_email='[email protected]',
url='http://pypi.python.org/pypi/tastyworks/',
version='4.0.0',
packages=find_packages(exclude=['main.py']),
python_requires='>= 3.6.0',
description='Tastyworks (unofficial) API',
license='LICENSE.txt',
long_description=long_desc,
long_description_content_type='text/markdown',
install_requires=REQUIRES,
extras_require={
'testing': TEST_REQUIRES,
},
keywords=['tastyworks', 'trading', 'api', 'algorithmic'],
entry_points={
'console_scripts': ['tasty=tastyworks.example:main']
},
classifiers=(
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
),
)