We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1fe25b5 commit 98d3dc0Copy full SHA for 98d3dc0
VERSION
build.sh
iconsdk/version.py
@@ -0,0 +1 @@
1
+__version__ = "2.3.0"
setup.py
@@ -1,8 +1,5 @@
-import os
2
from setuptools import setup, find_packages
3
-
4
-with open(os.path.join('.', 'VERSION')) as version_file:
5
- version = version_file.read().strip()
+from iconsdk.version import __version__
6
7
with open("README.md", 'r') as f:
8
long_description = f.read()
@@ -16,7 +13,7 @@
16
13
17
14
setup(
18
15
name='iconsdk',
19
- version=version,
+ version=__version__,
20
description='ICON SDK for Python is a collection of libraries which allow you to interact '
21
'with a local or remote ICON node using an HTTP connection.',
22
long_description=long_description,
0 commit comments