-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
49 lines (41 loc) · 1.23 KB
/
pyproject.toml
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
[project]
name = "mousetumortrack"
dynamic = ["version"]
description = "Tracking tumor nodules in mice CT scans."
readme = "README.md"
requires-python = ">=3.9"
license = {file = "LICENSE"}
authors = [{ name = "Mallory Wittwer", email = "[email protected]" }]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Image Processing",
]
dependencies = [
"numpy",
"pandas",
"scikit-image",
"trackpy",
"laptrack",
"vedo",
"mouselungseg",
]
[project.urls]
homepage = "https://github.com/EPFL-Center-for-Imaging/mousetumortrack"
repository = "https://github.com/EPFL-Center-for-Imaging/mousetumortrack"
[build-system]
requires = ["setuptools>=42.0.0", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.yaml"]
[tool.setuptools_scm]
write_to = "src/mousetumortrack/_version.py"
version_scheme = "guess-next-dev"
local_scheme = "no-local-version"