-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
48 lines (43 loc) · 1.39 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
# Skinstression: skin stretch regression using deep learning
# Copyright (C) 2024 Siem de Jong
# See LICENSE for full license.
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "skinstression"
authors = [
{name = "Siem de Jong", email = "siem.dejong@hotmail.nl"},
]
description = "Strain-stress curve regression on higher harmonic generation images of skin tissue."
requires-python = ">=3.11"
keywords = ["hhg", "regression", "skin"]
license = {file = "LICENSE"}
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"torch",
"torchvision",
"lightning",
"numpy",
"monai",
"matplotlib",
"pandas",
"scikit-learn",
"scipy",
"wandb",
"zarr",
]
dynamic = ["version", "readme"]
[tool.setuptools.dynamic]
version = {attr = "skinstression.VERSION"}
readme = {file = ["README.md"]}
[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["skinstression*"] # package names should match these glob patterns (["*"] by default)
exclude = ["skinstression.tests*"] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
[project.optional-dependencies]
dev = ["pre-commit"]
nb = ["ipykernel"]