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 6f234fa commit 480bc6eCopy full SHA for 480bc6e
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