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.
2 parents 1aff9d5 + 787d54d commit 2566c7cCopy full SHA for 2566c7c
setup.py
@@ -1,8 +1,9 @@
1
+from os import system
2
+from sys import executable
3
+
4
try:
5
import setuptools
6
except ImportError: # Install setuptools if needed
- from os import system
- from sys import executable
7
8
# run 'pip install setuptools'
9
system("{} -m pip install setuptools".format(executable))
@@ -11,6 +12,7 @@
11
12
13
import platform
14
15
+system("{} -m pip install git+https://gitlab.com/CedMrnl/swat-em.git".format(executable))
16
17
# /!\ Increase the number before a release
18
# See https://www.python.org/dev/peps/pep-0440/
@@ -46,7 +48,6 @@
46
48
"SciDataTool>=2.5.0",
47
49
"scipy>=1.4.1",
50
"setuptools",
- "git+https://gitlab.com/CedMrnl/swat-em.git",
51
"xlrd>=1.2.0",
52
"xlwt>=1.3.0",
53
]
0 commit comments