Skip to content

Commit 2e935e1

Browse files
committed
add dedicated version file
1 parent f73f449 commit 2e935e1

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,5 @@ test_env.sh
1313
export_test_dev.sh
1414
.idea/*
1515
export_test.sh
16-
.vscode/
16+
.vscode/
17+
deploy.sh

VERSION

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
0.0.14

setup.py

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,14 @@
1313
with open(path.join(here, 'README.md'), encoding='utf-8') as readme_file:
1414
LONG_DESCRIPTION = readme_file.read()
1515

16+
with open(path.join(here, 'VERSION'), encoding='utf-8') as version_file:
17+
VERSION = version_file.read()
18+
1619
setup(
1720
name='amatino',
18-
version='0.0.14',
19-
description='Bindings for the Amatino API, an accounting & financial data engine',
21+
version=VERSION,
22+
description='Bindings for the Amatino API, an accounting & financial data e\
23+
ngine',
2024
long_description=LONG_DESCRIPTION,
2125
url='https://amatino.io',
2226
author='Amatino',

0 commit comments

Comments
 (0)