forked from RaghavaAlajangi/cytosegment
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 933 Bytes
/
pyproject.toml
File metadata and controls
40 lines (35 loc) · 933 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
39
[build-system]
requires = ["setuptools>=61.0", "wheel", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "cytosegment"
authors = [
{name = "Raghava Alajangi"}
]
description = "Semantic Segmentation package for the LC project"
readme = "README.md"
requires-python = ">=3.9, <4"
keywords = ["RT-DC", "segmentation"]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
'Intended Audience :: Science/Research'
]
license = {text = "None"}
dependencies = [
"numpy==1.26.4",
"hydra-core==1.3.2",
"matplotlib==3.9.1",
"pyyaml",
"scikit-image>=0.24.0",
"torch>=1.13.1",
"torchvision>=0.13.1"
]
dynamic = ["version"]
[project.scripts]
cytosegment = "cytosegment.cli.handler:main"
[tool.setuptools]
packages = ["cytosegment"]
[tool.setuptools_scm]
write_to = "cytosegment/_version.py"
version_scheme = "post-release"