Skip to content

Commit ddfccd8

Browse files
author
coding-kitties
authored
Merge pull request #37 from coding-kitties/develop
Develop
2 parents 6ba23eb + 0b55614 commit ddfccd8

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
from investing_algorithm_framework.utils.version import get_version
22

3-
VERSION = (0, 1, 0, 'alpha', 0)
3+
VERSION = (0, 1, 1, 'alpha', 0)
44

55
__all__ = ['get_version']
6+

setup.py

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
import setuptools
2+
from investing_algorithm_framework import get_version
3+
4+
VERSION = get_version()
25

3-
VERSION = "0.1"
46
with open("README.md", "r") as fh:
57
long_description = fh.read()
68

@@ -13,7 +15,7 @@
1315
long_description=long_description,
1416
long_description_content_type="text/markdown",
1517
url="https://github.com/coding-kitties/investing-algorithm-framework.git",
16-
download_url='https://github.com/coding-kitties/investing-algorithm-framework/archive/v0.1.tar.gz',
18+
download_url='https://github.com/coding-kitties/investing-algorithm-framework/archive/v0.1.1.tar.gz',
1719
packages=setuptools.find_packages(exclude=['tests', 'tests.*']),
1820
keywords=['INVESTING', 'BOT', 'ALGORITHM', 'FRAMEWORK'],
1921
classifiers=[

0 commit comments

Comments
 (0)