-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (72 loc) · 2.28 KB
/
pyproject.toml
File metadata and controls
79 lines (72 loc) · 2.28 KB
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ituna"
dynamic = ["version"]
description = "Tune machine learning models for empirical identifiability and consistency"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Tobias Schmidt", email = "tobi.schmidt@helmholtz-munich.de"},
{name = "Steffen Schneider", email = "steffen.schneider@helmholtz-munich.de"}
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
requires-python = ">=3.8"
dependencies = [
"numpy",
"scipy",
"scikit-learn",
"pandas",
"tqdm",
"python-dotenv",
"filelock>=3.0.0",
"typeguard>=3.0.0",
]
[project.optional-dependencies]
datajoint = ["datajoint<2"]
dev = [
"pytest>=6.0",
"pytest-cov>=2.0",
"pre-commit>=3.0",
"cebra>=0.4.0",
"ruff",
# Cebra requires pkg_resources, which is part of setuptools.
# However, setuptools is not always installed by default anymore, so we need it here
"setuptools",
]
docs = [
"matplotlib",
"cebra[datasets,demos]>=0.4.0",
"jupyter-book<2",
"ghp-import",
]
dashboard = [
"streamlit>=1.49.1",
]
[tool.setuptools.dynamic]
version = {attr = "ituna.__version__"}
[tool.setuptools.packages.find]
exclude = ["third_party*", "tests*"]
[project.urls]
Homepage = "https://github.com/dynamical-inference/ituna"
Documentation = "https://dynamical-inference.github.io/ituna/"
Repository = "https://github.com/dynamical-inference/ituna.git"
"Bug Tracker" = "https://github.com/dynamical-inference/ituna/issues"
[project.scripts]
ituna-fit-distributed = "ituna._backends.scripts.cache_distributed:main"
ituna-fit-distributed-datajoint = "ituna._backends.scripts.datajoint_distributed:main"