-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (43 loc) · 1.11 KB
/
pyproject.toml
File metadata and controls
46 lines (43 loc) · 1.11 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "cloud-optimized-dicom"
version = "0.2.1"
description = "A library for efficiently storing and interacting with DICOM files in the cloud"
readme = "README.md"
authors = [
{name = "Cal Nightingale", email = "cal@gradienthealth.io"}
]
license = "MIT"
requires-python = ">=3.8"
dependencies = [
"smart-open==7.0.4",
"ratarmountcore==0.7.1",
"numpy",
"google-cloud-storage==2.19.0",
"apache-beam[gcp]==2.63.0",
"filetype==1.2.0",
"pylibjpeg==2.0.1",
"pylibjpeg-libjpeg==2.3.0",
"pylibjpeg-openjpeg==2.4.0",
"pydicom3>=3.1.0",
"opencv-python-headless==4.11.0.86",
"ffmpeg-python==0.2.0",
"zstandard>=0.24.0",
# Pin urllib3 to avoid bug in 2.6.x where _GzipDecoder.decompress() doesn't accept max_length parameter
"urllib3>=2.0.0,<2.6.0",
]
[project.optional-dependencies]
test = [
"pydicom==2.3.0",
"matplotlib",
]
dev = [
"pre-commit>=3.0.0",
"pydicom==2.3.0",
"matplotlib",
]
[tool.setuptools]
packages = {find = {}}
include-package-data = true