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 bb718ca commit 536a9c7Copy full SHA for 536a9c7
setup.py
@@ -39,8 +39,11 @@ def find_packages(base_path='.'):
39
# long_description = open('README.rst').read()
40
long_description = 'long description for xArm-Python-SDK'
41
42
-with open(os.path.join(os.getcwd(), 'requirements.txt')) as f:
43
- requirements = f.read().splitlines()
+try:
+ with open(os.path.join(os.getcwd(), 'requirements.txt')) as f:
44
+ requirements = f.read().splitlines()
45
+except:
46
+ requirements = []
47
48
setup(
49
name='xArm-Python-SDK',
0 commit comments