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.
setup.py
1 parent 55b535a commit 2550369Copy full SHA for 2550369
setup.py
@@ -1,4 +1,9 @@
1
#!/usr/bin/env python
2
3
+import os
4
+
5
+with open(os.path.join("fs", "_version.py")) as f:
6
+ exec(f.read())
7
8
from setuptools import setup
-setup()
9
+setup(version=__version__)
0 commit comments