-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
92 lines (81 loc) · 2.44 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "kit4dl"
description = "Kit4DL - A quick way to start with machine and deep learning"
requires-python = ">=3.10"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["deep learning", "training pipeline"]
dynamic = ["version"]
authors = [
{name = "Jakub Walczak"},
{name = "Marco Mancini"},
{name = "Mirko Stojiljkovic"},
{name = "Shahbaz Alvi"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: End Users/Desktop",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries",
]
dependencies = [
"lightning>=2.2.4",
"torch>=2.1.0",
"torchmetrics>=1.1.0",
"numpy>=1.17.2,<=1.25.3",
"pydantic>2.4.0",
"scikit-learn",
"colormath",
"tqdm>=4.57.0,<4.67.0",
"typing-extensions>=4.8.0",
"Jinja2<3.2.0",
"typer[all]",
"toml; python_version<'3.11'"
]
[project.urls]
"Homepage" = "https://opengeokube.github.io/kit4dl/"
"Documentation" = "https://opengeokube.github.io/kit4dl/"
"Source Code" = "https://github.com/opengeokube/kit4dl"
"Bug Tracker" = "https://github.com/opengeokube/kit4dl/issues"
[tool.setuptools.dynamic]
version = {attr = "kit4dl._version.__version__"}
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
exclude = ["examples*"]
[tool.pydocstyle]
[tool.isort]
profile = "black"
include_trailing_comma = true
line_length = 79
overwrite_in_place = true
use_parentheses = true
[tool.black]
line_length = 79
preview = true
[tool.mypy]
files = [
"kit4dl", "."
]
exclude = ["tests/", "examples/", "kit4dl/nn/callbacks"]
[project.scripts]
kit4dl = "kit4dl.cli.app:run"
[tool.pytest.ini_options]
filterwarnings = [
"ignore::DeprecationWarning"
]