forked from OpenGATE/opengate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
38 lines (35 loc) · 785 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
import os
from setuptools import setup
with open("VERSION", "r") as fh:
version = fh.read()[:-1]
# For windows, this package is needed
install_requires_windows = []
if os.name == "nt":
install_requires_windows = ["msvc-runtime"]
setup(
install_requires=[
"colored>1.5",
"opengate-core==" + version,
"gatetools",
"click",
"python-box<7.0.0",
"anytree",
"numpy<2.0.0",
"itk",
"uproot",
"scipy",
"matplotlib",
"GitPython",
"colorlog",
"numpy-stl",
"radioactivedecay",
"jsonpickle",
"pandas",
"requests",
"PyYAML",
"SimpleITK",
"spekpy",
"icrp107-database",
]
+ install_requires_windows,
)