-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
49 lines (46 loc) · 1.42 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
46
47
48
import setuptools
with open('README.rst', 'r') as f:
long_description = f.read()
setuptools.setup(
name='tda-api-helper',
version='0.0.1',
author='Alex Golec',
author_email='[email protected]',
description='A Discord bot to notify users of frequently asked questions',
long_description=long_description,
long_description_content_type='text/x-rst',
url='https://github.com/alexgolec/tda-api-helper',
packages=setuptools.find_packages(),
classifiers=[
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Development Status :: 4 - Beta',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Office/Business :: Financial :: Investment',
],
python_requires='>=3.9',
install_requires=[
'discord.py',
'sqlalchemy',
'pyyaml',
],
extras_require={
'dev': [
'asynctest',
'colorama',
'coverage',
'tox',
'nose',
'pytest',
]
},
keywords='finance trading equities bonds options research',
project_urls={
'Source': 'https://github.com/alexgolec/tda-api-helper',
'Tracker': 'https://github.com/alexgolec/tda-api-helper/issues',
},
license='MIT',
)