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 6e43d81 commit ce2d4dfCopy full SHA for ce2d4df
setup.py
@@ -1,7 +1,13 @@
1
from setuptools import setup, find_packages
2
+import os
3
+
4
+if "GITHUB_REF" in os.environ:
5
+ version = os.environ["GITHUB_REF"]
6
+else:
7
+ version = "0.0.1"
8
9
setup(name='nimbus-python',
- version='0.0.1',
10
+ version=version,
11
description='python bindings for nimbus 3D camera',
12
url='https://github.com/pieye/nimbus-python',
13
author='Markus Proeller',
@@ -12,4 +18,4 @@
18
"websockets", "numpy", "requests"
19
],
14
20
packages=find_packages(),
15
- zip_safe=False)
21
+ zip_safe=False)
0 commit comments