forked from tastyware/tastytrade
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (24 loc) · 702 Bytes
/
setup.py
File metadata and controls
28 lines (24 loc) · 702 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
28
from setuptools import find_packages, setup
from tastytrade import VERSION
f = open('README.rst', 'r')
LONG_DESCRIPTION = f.read()
f.close()
setup(
name='tastytrade',
version=VERSION,
description='An unofficial SDK for Tastytrade!',
long_description=LONG_DESCRIPTION,
long_description_content_type='text/x-rst',
author='Graeme Holliday',
author_email='graeme.holliday@pm.me',
url='https://github.com/tastyware/tastytrade',
license='MIT',
install_requires=[
'requests<3',
'dataclasses',
'websockets>=11.0.3',
'pydantic>=1.10.7'
],
packages=find_packages(exclude=['ez_setup', 'tests*']),
include_package_data=True
)