We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f64f1ca commit c03af67Copy full SHA for c03af67
construct_typed/version.py
@@ -0,0 +1,2 @@
1
+version = (0, 3, 0)
2
+version_string = "0.3.0"
setup.py
@@ -1,9 +1,11 @@
#!/usr/bin/env python
from setuptools import setup
3
4
+exec(open("./construct_typed/version.py").read())
5
+
6
setup(
7
name="construct-typing",
- version="0.2.0",
8
+ version=version_string,
9
packages=["construct-stubs", "construct_typed"],
10
package_data={
11
"construct-stubs": ["*.pyi", "lib/*.pyi"],
0 commit comments