-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
50 lines (44 loc) · 1.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
[tool.poetry]
name = "py-csi-cobotics"
readme="README.md"
version = "0.2.1"
description = "A Python framework for controlling and processing experiments built upon the CSI:Cobot Digital Twin"
authors = ["Gaudeval <[email protected]>"]
license = "BSD-3-Clause"
repository = "https://github.com/Gaudeval/py-csi-cobotics"
packages = [
{ include = "csi" },
]
[tool.poetry.dependencies]
python = "^3.9"
dataset = "^1.5.0"
geneticalgorithm = "^1.0.2"
jsonpath2 = "^0.4.4"
metric-temporal-fuzzy-logic = "^0.0.6"
qdpy = "^0.1.2"
tqdm = "^4.62.3"
traces = "^0.6.0"
docker = "^5.0.3"
drs = "^2.0.0"
seaborn = "^0.11.2"
[tool.poetry.dev-dependencies]
# code quality
black = "^21.10b0"
pytest = "^6.2.5"
pytest-enabler = "^1.2.1"
pytest-cov = "^2.7"
pytest-flake8 = "^1.0"
pytest-sugar = "^0.9.2"
pytest-mypy = "^0.8.1"
# tcx container dependencies
Flask = "^2.0.2"
kinpy = "^0.1.0"
[pytest.enabler.mypy]
addopts = "--mypy"
[pytest.enabler.flake8]
addopts = "--flake8"
[pytest.enabler.cov]
addopts = "--cov"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"