File tree 1 file changed +6
-7
lines changed
1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change 1
1
from setuptools import setup
2
2
import os
3
3
import re
4
- from pathlib import Path
5
4
6
5
from fmu_manipulation_toolbox .version import __author__ as author , __version__ as default_version
7
6
22
21
except Exception as e :
23
22
print (f"Cannot create __version__.py: { e } " )
24
23
25
- requirements = []
26
- with open (Path (__file__ ).parent / "requirements.txt" , newline = '' ) as req_file :
27
- for line in req_file :
28
- requirements .append (line )
29
-
30
24
setup (
31
25
name = "fmu_manipulation_toolbox" ,
32
26
version = version ,
61
55
62
56
FMU Manipulation Toolbox also allows to group FMU's inside FMU Containers.
63
57
""" ,
64
- install_requires = requirements ,
58
+ install_requires = [
59
+ "PySide6 >= 6.8.0" ,
60
+ "xmlschema >= 3.3.1" ,
61
+ "elementpath >= 4.4.0" ,
62
+ "colorama >= 0.4.6" ,
63
+ ],
65
64
)
66
65
67
66
os .remove ("fmu_manipulation_toolbox/__version__.py" )
You can’t perform that action at this time.
0 commit comments