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 4ea390a commit 022ae23Copy full SHA for 022ae23
setup.py
@@ -1,14 +1,13 @@
1
import setuptools
2
from setuptools.dist import Distribution
3
-import os
+from underautomation.universal_robots.lib.version import VERSION
4
5
with open('README.md', "r", encoding="utf-8") as fh:
6
long_description = fh.read()
7
8
-
9
setuptools.setup(
10
name="UnderAutomation.UniversalRobots",
11
- version="7.4.1.0.1",
+ version=VERSION
12
author="UnderAutomation",
13
author_email="support@underautomation.com",
14
description="Quickly create applications that communicate with your Universal Robots cobot",
underautomation/universal_robots/lib/version.py
@@ -0,0 +1 @@
+VERSION="7.4.1.0"
0 commit comments