-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
43 lines (40 loc) · 1.31 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
[build-system]
requires = ["setuptools>=61", "setuptools_scm[toml]>=7"]
build-backend = "setuptools.build_meta"
[project]
name = "banff-aid"
version = "0.1.0"
description = "BANFF-AID: Banff Automated Nephrology Feature Framework - Artificial Intelligence Diagnosis"
readme = "readme.md"
license = {file = "license.txt"}
authors = [
{ name = "Dženan Zukić", email = "[email protected]" },
]
keywords = [
"banff", "AI", "diagnosis", "kidney", "transplant"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Healthcare Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Medical Science Apps.",
]
requires-python = ">=3.11"
dependencies = [
"numpy==1.26.4",
"monai[tensorboard,itk,tqdm,openslide,pandas,matplotlib]==1.4.0",
]
[project.scripts]
train = "train:main"
[tool.black]
line-length = 120 # Default 88 is a bit too short.
target-version = ['py311']