forked from BerkeleyLearnVerify/VerifAI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
84 lines (80 loc) · 2.07 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
[project]
name = "verifai"
version = "2.1.1"
description = "A toolkit for the formal design and analysis of systems that include artificial intelligence (AI) and machine learning (ML) components."
authors = [
{ name = "Tommaso Dreossi" },
{ name = "Daniel Fremont", email = "[email protected]" },
{ name = "Shromona Ghosh" },
{ name = "Edward Kim", email = "[email protected]" },
{ name = "Hadi Ravanbakhsh" },
{ name = "Marcell Vazquez-Chanlatte" },
{ name = "Sanjit A. Seshia" }
]
maintainers = [
{ name = "Daniel Fremont", email = "[email protected]" },
{ name = "Edward Kim", email = "[email protected]" }
]
readme = "README.md"
requires-python = ">=3.8"
license = { file = "LICENSE" }
classifiers = [
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python :: 3",
]
dependencies = [
"numpy ~= 1.21",
"scipy ~= 1.7",
"dotmap ~= 1.3",
"metric-temporal-logic >= 0.1.5",
"matplotlib ~= 3.2",
"easydict ~= 1.9",
"joblib ~= 1.2",
"dill >= 0.3.1",
"future >= 0.18.3",
"pandas ~= 1.3",
"scikit-learn ~= 1.0",
"pygame ~= 2.1",
"kmodes <= 0.10.2",
"scenic >= 2.1.0b1, <4",
"progressbar2 ~= 3.53",
"networkx >= 2.6",
"statsmodels >= 0.13.2",
]
[project.optional-dependencies]
bayesopt = [
"GPy ~= 1.9",
"GPyOpt ~= 1.2",
]
parallel = [
"ray ~= 1.10",
]
examples = [
"tensorflow ~= 2.8",
"gym >= 0.22",
"pyglet ~= 1.5",
"opencv-python ~= 4.5",
"pillow ~= 9.3",
'pyproj ~= 3.0; python_version < "3.10"',
'pyproj ~= 3.3; python_version >= "3.10"',
]
test = [ # minimum dependencies for running tests (used for tox virtualenvs)
"pytest >= 6.2.5, <8",
"pytest-randomly >= 3.2",
]
dev = [
"verifai[test]", # all dependencies from 'test' extra above
"tox ~= 3.14",
"sphinx >= 4.1.0, <6",
"sphinx-rtd-theme >= 0.5.2",
"sphinx-tabs ~= 3.4.1",
"recommonmark >= 0.6.0",
]
[project.urls]
Repository = "https://github.com/BerkeleyLearnVerify/VerifAI"
Documentation = "https://verifai.readthedocs.io"
[build-system]
requires = ["flit_core >= 3.2, <4"]
build-backend = "flit_core.buildapi"