forked from tylerebowers/Schwab-API-Python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (37 loc) · 1.29 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
from setuptools import setup, find_packages
VERSION = '1.9.1'
DESCRIPTION = 'Schwab API Python Client (unofficial)'
with open('README.md', 'r') as f:
LONG_DESCRIPTION = f.read()
setup(
name='schwabdev',
version=VERSION,
author='Tyler Bowers',
author_email='[email protected]',
license='MIT',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
packages=find_packages(),
python_requires='>=3.11',
install_requires=[
'requests',
'websockets',
'manyterm'
],
keywords=['python', 'schwab', 'api', 'client', 'finance', 'trading', 'stocks', 'equities', 'options', 'forex', 'futures'],
classifiers=[
'Topic :: Office/Business :: Financial :: Investment',
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Natural Language :: English',
],
project_urls={
'Source': 'https://github.com/tylerebowers/Schwab-API-Python',
'Youtube': 'https://www.youtube.com/playlist?list=PLs4JLWxBQIxpbvCj__DjAc0RRTlBz-TR8',
'PyPI': 'https://pypi.org/project/schwabdev/'
}
)