File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 13
13
from setuptools import setup , find_packages
14
14
15
15
os .chdir (Path (__file__ ).parent )
16
- SRC = Path ("discopop_explorer" )
16
+ Explorer_SRC = Path ("discopop_explorer" )
17
+ Wizard_SRC = Path ("discopop_wizard" )
17
18
18
19
19
20
def get_version ():
@@ -24,10 +25,10 @@ def get_version():
24
25
def get_requirements ():
25
26
requirements = []
26
27
# add discopop_explorer requirements
27
- with open (SRC / "requirements.txt" ) as f :
28
+ with open (Explorer_SRC / "requirements.txt" ) as f :
28
29
requirements += [line .rstrip () for line in f ]
29
30
# add discopop_wizard requirements
30
- with open (Path ( "discopop_wizard" ) / "requirements.txt" ) as f :
31
+ with open (Wizard_SRC / "requirements.txt" ) as f :
31
32
requirements += [line .rstrip () for line in f ]
32
33
return requirements
33
34
You can’t perform that action at this time.
0 commit comments