-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
51 lines (39 loc) · 1.18 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
[project]
name = "symbolic-automata-monitors"
version = "0.2.0"
description = "Symbolic Automata monitors for quantitative reasoning of signals"
readme = "README.md"
license = { file = "LICENSE" }
maintainers = [{ name = "Anand Balakrishnan" }]
authors = [{ name = "Anand Balakrishnan" }, { name = "Dejan Nickovic" }]
classifiers = [
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3 :: Only",
"Intended Audience :: Science/Research",
]
requires-python = "~= 3.9"
dependencies = [
"numpy ~= 1.21",
"scipy ~= 1.7",
"z3-solver ~= 4.8",
"networkx ~= 2.6",
"rtamt @ https://github.com/nickovic/rtamt/tarball/a16db77b61028f774d81457ff22e666229a5432c",
]
[project.urls]
repository = "https://github.com/anand-bala/symbolic-automata-monitors"
[tool.setuptools.packages.find]
where = ["src"]
[build-system]
requires = ["setuptools >= 61.0", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"
[tool.isort]
profile = "black"
group_by_package = true
[tool.black]
line-length = 88
[[tool.mypy.overrides]]
module = ["rtamt", "rtamt.*"]
ignore_missing_imports = true
[[tool.mypy.overrides]]
module = ["spot", "z3"]
ignore_missing_imports = true