-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (76 loc) · 2.37 KB
/
pyproject.toml
File metadata and controls
84 lines (76 loc) · 2.37 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
80
81
82
83
84
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pylucid"
readme = "README.md"
authors = [
{ name = "Ernesto Casablanca", email = "[email protected]" },
{ name = "Oliver Schon", email = "[email protected]" },
]
maintainers = [
{ name = "Ernesto Casablanca", email = "[email protected]" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Programming Language :: C++",
"Programming Language :: Python :: 3",
"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 :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Information Analysis",
"Typing :: Typed",
]
keywords = ["neural network", "kernel"]
requires-python = ">= 3.9"
dependencies = [
"numpy<=2.2.5",
"scipy<=1.16.0",
"pyparsing<=3.2.3",
"sympy<=1.14.0",
"jsonschema<=4.24.0",
"PyYAML<=6.0.2",
"plotly<=6.2.0"
]
dynamic = ["version", "description"]
[project.urls]
Homepage = "https://tendto.github.io/lucid/"
Documentation = "https://tendto.github.io/lucid/"
Repository = "https://github.com/TendTo/lucid.git"
Issues = "https://github.com/TendTo/lucid/issues"
Changelog = "https://github.com/TendTo/lucid/blob/main/docs/Changelog.md"
[project.optional-dependencies]
verification = ["dreal"]
test = ["pytest"]
gurobi = ["gurobipy>=12.0.0,<=12.0.3"]
cuda = ["cuda-pathfinder<=13.0.1"]
gui = [
"flask<=3.1.1",
"flask-cors<=6.0.1",
"flask-session[cachelib]<=0.8.0",
]
benchmark = ["mlflow>=3.1"]
[project.scripts]
pylucid = "pylucid.__main__:main"
pylucid-gui = "pylucid.gui:main"
[tool.setuptools]
packages = []
license-files = ["LICEN[CS]E*"]
# Black configuration (code formatter)
[tool.black]
target-version = ['py38', 'py39', 'py310', 'py311', 'py312', 'py313']
line-length = 120
include = '(benchmarks|bindings/pylucid|tests/bindings/pylucid)\/.*\.py'
# Isort configuration (import sorter)
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
python_files = "Test*.py"