Skip to content

Commit 66f1ece

Browse files
author
investing-algorithms
authored
Merge pull request #27 from investing-algorithms/develop
Develop
2 parents 0bf444b + e5f1e36 commit 66f1ece

File tree

2 files changed

+17
-4
lines changed

2 files changed

+17
-4
lines changed

setup.cfg

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,33 @@
11
import setuptools
22

3+
VERSION = "0.1"
34
with open("README.md", "r") as fh:
45
long_description = fh.read()
56

67
setuptools.setup(
78
name="investing_algorithm_framework",
8-
version="0.0.1",
9+
version=VERSION,
10+
license="BSL-1.1",
11+
author="coding kitties",
912
description="A framework for creating an investment algorithm",
1013
long_description=long_description,
1114
long_description_content_type="text/markdown",
1215
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',
1317
packages=setuptools.find_packages(exclude=['tests', 'tests.*']),
18+
keywords=['INVESTING', 'BOT', 'ALGORITHM', 'FRAMEWORK'],
1419
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",
1728
],
1829
install_requires=[
19-
'colorama', 'wrapt', 'requests'
30+
'colorama', 'wrapt', 'requests', 'SQLAlchemy', 'pytest'
2031
],
2132
python_requires='>=3.6',
2233
scripts=['bin/investing-algorithm-framework-admin'],

0 commit comments

Comments
 (0)