-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (36 loc) · 1.05 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "lucamarx-pyautospec"
readme = "README.md"
version = "0.10.0"
authors = [{name="Luca Marx", email="luca@lucamarx.com"}]
license = {file="LICENSE"}
keywords = ["automata", "spectral-learning"]
description = "Spectral learning for weighted automata"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
]
dependencies = [
"scikit-image >= 0.20.0",
"scikit-learn >= 1.0.2",
"matplotlib >= 3.3.4",
"graphviz >= 0.19.0",
"seaborn >= 0.11.2",
"pandas >= 1.4.2",
"tqdm >= 4.62.0",
"jaxlib >= 0.3.0",
"jax >= 0.3.0"
]
requires-python = ">=3.8"
[project.urls]
"Homepage" = "https://github.com/lucamarx/pyAutoSpec"
"Bug Tracker" = "https://github.com/lucamarx/pyAutoSpec/issues"
[project.optional-dependencies]
dev = ["pip-tools", "pytest"]
[tool.pyright]
typeCheckingMode = "off"
useLibraryCodeForTypes = true