-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (42 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
46 lines (42 loc) · 1.12 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
[tool.poetry]
name = "lib-avstack-carla"
version = "0.1.0-alpha.1"
description = "Wrapper around Carla simulator for AVstack"
authors = ["Spencer Hallyburton <spencer.hallyburton@duke.edu>"]
readme = "README.md"
license = "MIT"
homepage = "https://avstack.org"
repository = "https://github.com/avstack-lab/lib-avstack-carla"
keywords = ["self-driving", "autonomy", "perception", "planning", "control"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
]
packages = [{include = "avcarla"}]
[tool.poetry.dependencies]
python = "~3.10"
numpy = ">=1.20, <1.26"
numpy-quaternion = "^2022.4"
lib-avstack-core = { path = "../lib-avstack-core", develop = true }
lib-avstack-api = { path = "../lib-avstack-api", develop = true }
[tool.poetry.group.test.dependencies]
pytest = "^7"
pytest-cov = "^4"
bandit = "^1.7"
black = "~22.12.0"
mypy = "^0"
isort = "^5.11"
flake8 = "^5.0"
autoflake = "^1"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q -s"
testpaths = [
"tests",
"integration",
]
[build-system]
requires = [
"poetry-core",
]
build-backend = "poetry.core.masonry.api"