-
-
Notifications
You must be signed in to change notification settings - Fork 131
/
setup.py
41 lines (39 loc) · 1.44 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
from setuptools import setup, find_packages
VERSION = '2.4.4' # Also update version in api.py
DESCRIPTION = 'An easy and lightweight wrapper for using the Charles Schwab API.'
with open('README.md', 'r') as f:
LONG_DESCRIPTION = f.read()
setup(
name='schwabdev',
version=VERSION,
author='Tyler Bowers',
author_email='tylerebowers@gmail.com',
url='https://github.com/tylerebowers/Schwab-API-Python',
license='MIT',
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
long_description_content_type='text/markdown',
packages=find_packages(),
python_requires='>=3.11',
install_requires=[
'tzdata',
'requests',
'websockets',
'cryptography',
],
keywords=['python', 'schwab', 'api', 'client', 'finance', 'trading', 'stocks', 'equities', 'options', 'forex', 'futures'],
classifiers=[
'Topic :: Office/Business :: Financial :: Investment',
'Development Status :: 5 - Production/Stable',
'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/'
}
)