We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b171505 commit 24369caCopy full SHA for 24369ca
VERSION
@@ -0,0 +1 @@
1
+0.1.2
setup.py
@@ -7,9 +7,15 @@ def readme():
7
return content
8
9
10
+def get_version():
11
+ with open('VERSION', encoding='utf-8') as f:
12
+ version = f.read()
13
+ return version
14
+
15
16
setup(
17
name='thonny-quecpython',
- version='0.1.2',
18
+ version=get_version(),
19
description='quecpython programing kits for thonny',
20
long_description=readme(),
21
long_description_content_type='text/x-rst',
0 commit comments