-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathproject.toml
33 lines (31 loc) · 839 Bytes
/
project.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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "OpenSBT"
version = "0.1.6"
authors = [
{name = "Lev Sorokin", email = "[email protected]"},
]
description = "OpenSBT is a Modular Framework for Search-based Testing of Automated Driving Systems"
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
]
dependencies = [
'deap==1.4.1',
'numpy==1.23.5',
'scipy==1.10.1',
'matplotlib==3.7.4',
'docker==6.1.3',
'pandas==2.0.3',
'setuptools',
'scikit-learn==1.3.2',
'pymoo==0.6.0.1'
]
[project.urls]
Homepage = "https://git.fortiss.org/opensbt"
Issues = "https://git.fortiss.org/groups/opensbt/-/issues"