-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (34 loc) · 998 Bytes
/
pyproject.toml
File metadata and controls
38 lines (34 loc) · 998 Bytes
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
[tool.poetry]
name = "idc-annotation-conversion"
version = "0.1.0"
description = "Python code for converting TCGA annotations into DICOM format."
authors = ["Chris Bridge <cbridge@mgh.harvard.edu>"]
readme = "README.md"
packages = [{include = "idc_annotation_conversion", from = "src" }]
[tool.poetry.dependencies]
python = "^3.10"
numpy = ">=2.0.0"
pydicom = "^3.0.1"
highdicom = { version = "^0.27.0", extras = ["libjpeg"] }
google-cloud-bigquery = "^3.6.0"
google-cloud-storage = "^2.7.0"
google-auth = "^2.16.2"
pandas = ">=2.0.0"
db-dtypes = "^1.0.5"
shapely = "^2.0.1"
click = "^8.1.3"
dicomweb-client = "^0.59.1"
oauthlib = "^3.2.2"
requests-oauthlib = "^1.3.1"
gitpython = "^3.1.31"
rasterio = "^1.3.6"
h5py = "^3.13.0"
[tool.poetry.group.dev.dependencies]
flake8 = "^6.0.0"
mypy = "^1.1.1"
ipython = "^8.11.0"
[tool.poetry.scripts]
idc-annotation-conversion = "idc_annotation_conversion.__main__:run"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"