-
Notifications
You must be signed in to change notification settings - Fork 29
/
pyproject.toml
37 lines (34 loc) · 1 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
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "antspynet"
version = "0.2.9"
description = "A collection of deep learning architectures ported to the python language and tools for basic medical image processing."
readme = "README.md"
authors = [
{name = "Nicholas J. Tustison", email = "ntustison@gmail.com"},
{name = "Brian B. Avants"},
{name = "Nick Cullen"}
]
license = {text = "Apache License 2.0"}
keywords = ["ANTsPyNet", "deep learning", "medical image processing"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy",
"tensorflow>=2.11,<=2.17",
# "keras<3",
"antspyx>=0.4.2",
"scikit-learn",
"requests",
"statsmodels",
"matplotlib"
]
[project.urls]
homepage = "https://github.com/ANTsX/ANTsPyNet"
[tool.setuptools.packages]
find = { include = ["antspynet","antspynet.*"] }