-
-
Notifications
You must be signed in to change notification settings - Fork 323
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
120 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,73 @@ | ||
from setuptools import setup, find_packages | ||
from setuptools import setup | ||
from setuptools import find_namespace_packages | ||
|
||
# load the README file. | ||
with open("README.md", "r") as fh: | ||
with open(file="README.md", mode="r") as fh: | ||
long_description = fh.read() | ||
|
||
setup( | ||
name='pyrobot', | ||
|
||
name='python-trading-robot', | ||
|
||
author='Alex Reed', | ||
|
||
author_email='coding.sigma@gmail.com', | ||
|
||
version='0.1.0', | ||
|
||
description='A trading robot built for Python that uses the TD Ameritrade API.', | ||
|
||
long_description=long_description, | ||
|
||
long_description_content_type="text/markdown", | ||
|
||
url='https://github.com/areed1192/python-trading-robot', | ||
|
||
install_requires=[ | ||
'td-ameritrade-python-api', | ||
'pandas', | ||
'numpy' | ||
'td-ameritrade-python-api==0.3.0', | ||
'pandas==1.0.5', | ||
'numpy==1.19.0' | ||
], | ||
|
||
keywords='finance, td ameritrade, api, trading robot', | ||
packages=find_packages(include=['pyrobot'], exclude=['*config.py']), | ||
|
||
packages=find_namespace_packages( | ||
include=['pyrobot', 'samples', 'tests'], | ||
exclude=['configs*'] | ||
), | ||
|
||
include_package_data=True, | ||
|
||
python_requires='>=3.8', | ||
|
||
classifiers=[ | ||
|
||
# I can say what phase of development my library is in. | ||
'Development Status :: 3 - Alpha', | ||
|
||
# Here I'll add the audience this library is intended for. | ||
'Intended Audience :: Developers', | ||
'Intended Audience :: Science/Research', | ||
'Intended Audience :: Financial and Insurance Industry', | ||
|
||
# Here I'll define the license that guides my library. | ||
'License :: OSI Approved :: MIT License', | ||
|
||
# Here I'll note that package was written in English. | ||
'Natural Language :: English', | ||
|
||
# Here I'll note that any operating system can use it. | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: 3' | ||
], | ||
python_requires='>=3.7' | ||
|
||
# Here I'll specify the version of Python it uses. | ||
'Programming Language :: Python', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.8', | ||
|
||
# Here are the topics that my library covers. | ||
'Topic :: Database', | ||
'Topic :: Education', | ||
'Topic :: Office/Business' | ||
|
||
] | ||
) |