Skip to content

Commit ddf2356

Browse files
committed
requirement managed old school
1 parent 1aca379 commit ddf2356

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

setup.py

+6-7
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
from setuptools import setup
22
import os
33
import re
4-
from pathlib import Path
54

65
from fmu_manipulation_toolbox.version import __author__ as author, __version__ as default_version
76

@@ -22,11 +21,6 @@
2221
except Exception as e:
2322
print(f"Cannot create __version__.py: {e}")
2423

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-
3024
setup(
3125
name="fmu_manipulation_toolbox",
3226
version=version,
@@ -61,7 +55,12 @@
6155
6256
FMU Manipulation Toolbox also allows to group FMU's inside FMU Containers.
6357
""",
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+
],
6564
)
6665

6766
os.remove("fmu_manipulation_toolbox/__version__.py")

0 commit comments

Comments
 (0)