-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
50 lines (43 loc) · 1.27 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
from pathlib import Path
try:
from setuptools import find_packages, setup
except ImportError:
from distutils.core import setup
INSTALL_REQUIRES = [
"Keras==2.10.0",
"matplotlib==3.6.1",
"numpy==1.23.4",
"opencv-contrib-python==4.6.0.66",
"openpyxl==3.0.10",
"pandas==1.5.1",
"Pillow==9.2.0",
"pre-commit==2.17.0",
"scikit-image==0.19.3",
"scikit-learn==1.1.2",
"sewar==0.4.5",
"tensorflow==2.10.0",
"tqdm==4.64.1"
]
CLASSIFIERS = [
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
'Topic :: MSK Ultrasonography :: Deep Learning'
]
this_directory = Path(__file__).parent
long_descr = (this_directory / "README_Pypi.md").read_text()
if __name__ == "__main__":
setup(
name="DL_Track_US",
version="0.2.1",
maintainer="Paul Ritsche",
maintainer_email="paul.ritsche@unibas.ch",
long_description=long_descr,
long_description_content_type="text/markdown",
url="https://github.com/PaulRitsche/DL_Track_US",
packages=find_packages(),
package_data={"DL_Track_US": ["*"]},
classifiers=CLASSIFIERS,
python_requires=">=3.10",
install_requires=INSTALL_REQUIRES,
)