-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
81 lines (75 loc) · 2.08 KB
/
pyproject.toml
File metadata and controls
81 lines (75 loc) · 2.08 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pyquantus"
version = "0.0.1"
authors = [
{ name = "David Spector", email = "davidspector9@gmail.com" }
]
description = "Quantitative Ultrasound for Python"
readme = "README.md"
requires-python = ">=3.10.0"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
]
dependencies = [
"appdirs>=1.4.4",
"contourpy>=1.1.0",
"cycler>=0.11.0",
"et-xmlfile>=1.1.0",
"fonttools>=4.42.1",
"gdown>=5.1.0",
"h5py>=3.9.0",
"imageio>=2.31.1",
"joblib>=1.3.2",
"kiwisolver>=1.4.5",
"mat73>=0.60",
"matplotlib>=3.6.2",
"matplotlib-inline>=0.1.3",
"networkx>=3.1",
"numpy>=1.23.0",
"opencv-python-headless>=4.8.0.76",
"openpyxl>=3.0.10",
"packaging>=23.1",
"pandas>=1.4.3",
"Pillow>=9.2.0",
"pydicom>=2.4.1",
"pyparsing>=3.1.1",
"python-dateutil>=2.8.2",
"pytz>=2023.3",
"pyvista>=0.36.1",
"PyWavelets>=1.4.1",
"PyYAML>=6.0.2",
"scikit-image>=0.19.3",
"scikit-learn>=1.1.1",
"scipy>=1.11.3",
"scooby>=0.7.2",
"six>=1.16.0",
"scikit-learn",
"threadpoolctl>=3.2.0",
"tifffile>=2023.8.12",
"tqdm>=4.66.2",
"traitlets>=5.9.0",
"typing_extensions>=4.11.0",
"vtk>=9.2.6"
]
#TODO: Add optional dev dependencies for sphinx and testing
[project.urls]
"Source" = "https://github.com/TUL-Dev/PyQuantUS"
[tool.setuptools]
ext-modules = [
{name = "philipsRfParser", sources = ["pyquantus/parse/philips_rf_parser.c"]}
]
packages = ["pyquantus", "pyquantus.parse", "pyquantus.utc"]