We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 652796a + 732e409 commit 9797cceCopy full SHA for 9797cce
setup.py
@@ -9,20 +9,17 @@
9
10
# read the contents of README file
11
from os import path
12
-import sys
13
this_directory = path.abspath(path.dirname(__file__))
14
with open(path.join(this_directory, 'README.md'), encoding='utf-8') as f:
15
long_description = f.read()
16
17
f = open("PYML_VERSION", "r")
18
pymeshlabversion = f.read()
19
20
-install_requires = ['numpy']
21
-
22
-# if on windows, add msvc-runtime as dependency
23
-osused = platform.system()
24
-if osused == 'Windows':
25
- install_requires.append('msvc-runtime')
+install_requires = [
+ 'numpy',
+ 'msvc-runtime ; platform_system == "Windows"',
+]
26
27
try:
28
from wheel.bdist_wheel import bdist_wheel as _bdist_wheel
0 commit comments