forked from tastyware/tastytrade
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
28 lines (25 loc) · 768 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
25
26
27
28
from setuptools import find_packages, setup
f = open('README.md', 'r')
LONG_DESCRIPTION = f.read()
f.close()
setup(
name='tastytrade',
version='8.3',
description='An unofficial SDK for Tastytrade!',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
author='Graeme Holliday',
author_email='[email protected]',
url='https://github.com/tastyware/tastytrade',
license='MIT',
install_requires=[
'requests<3',
'websockets>=11.0.3',
'pydantic>=2.6.3',
'pandas_market_calendars>=4.3.3',
'fake_useragent>=1.5.1'
],
packages=find_packages(exclude=['ez_setup', 'tests*']),
package_data={'tastytrade': ['py.typed']},
include_package_data=True
)