|
1 | 1 | import setuptools |
2 | 2 |
|
| 3 | +VERSION = "0.1" |
3 | 4 | with open("README.md", "r") as fh: |
4 | 5 | long_description = fh.read() |
5 | 6 |
|
6 | 7 | setuptools.setup( |
7 | 8 | name="investing_algorithm_framework", |
8 | | - version="0.0.1", |
| 9 | + version=VERSION, |
| 10 | + license="BSL-1.1", |
| 11 | + author="coding kitties", |
9 | 12 | description="A framework for creating an investment algorithm", |
10 | 13 | long_description=long_description, |
11 | 14 | long_description_content_type="text/markdown", |
12 | 15 | url="https://github.com/investing-algorithms/investing-algorithm-framework.git", |
| 16 | + download_url='https://github.com/investing-algorithms/investing-algorithm-framework/archive/v0.1.tar.gz', |
13 | 17 | packages=setuptools.find_packages(exclude=['tests', 'tests.*']), |
| 18 | + keywords=['INVESTING', 'BOT', 'ALGORITHM', 'FRAMEWORK'], |
14 | 19 | classifiers=[ |
15 | | - "Programming Language :: Python :: 3", |
16 | | - "License :: OSI Approved :: Operating System :: OS Independent", |
| 20 | + "Framework :: Investing Algorithm Framework", |
| 21 | + "Intended Audience :: Developers", |
| 22 | + 'Programming Language :: Python :: 3', |
| 23 | + 'Programming Language :: Python :: 3.4', |
| 24 | + 'Programming Language :: Python :: 3.5', |
| 25 | + 'Programming Language :: Python :: 3.6', |
| 26 | + "Topic :: Software Development", |
| 27 | + "License :: Other/Proprietary License", |
17 | 28 | ], |
18 | 29 | install_requires=[ |
19 | | - 'colorama', 'wrapt', 'requests' |
| 30 | + 'colorama', 'wrapt', 'requests', 'SQLAlchemy', 'pytest' |
20 | 31 | ], |
21 | 32 | python_requires='>=3.6', |
22 | 33 | scripts=['bin/investing-algorithm-framework-admin'], |
|
0 commit comments