forked from CogniPilot/cyecca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
65 lines (59 loc) · 1.3 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
[tool.poetry]
name = "cyecca"
version = "0.1.0"
description = ""
authors = ["James Goppert <[email protected]>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10,<3.13"
numpy = "^1.24.2"
casadi = {version = "^3.6.5"}
sympy = "^1.11.1"
beartype = "^0.14.0"
scipy = "^1.11.1"
pydot = "^1.4.2"
simpy = "^4.1.1"
pyulog = "^1.1.0"
graphviz = "^0.20.3"
matplotlib = "^3.7.2"
protobuf = "3.20.3"
synapse-pb = "^0.2.10"
delimited-protobuf = "^1.0.0"
pandas = "^2.2.2"
[tool.poetry.group.dev.dependencies]
black = {extras = ["jupyter"], version = "^23.7.0"}
coverage = {extras = ["toml"], version = "^7.1.0"}
flake8 = "^6.0.0"
flake8-pyproject = "^1.2.2"
ipykernel = "^6.21.1"
jupyter = "^1.0.0"
jupyter-client = "^8.3.0"
jupyter-console = "^6.6.3"
jupyter-core = "^5.3.1"
jupyterlab = "^3.6.3"
lark = "^1.1.6"
mypy = "^1.0.0"
pre-commit = "^3.0.4"
pylint = "^2.16.1"
pytest = "^7.2.1"
pytest-cov = "^4.0.0"
snakeviz = "^2.1.1"
nbmake = "^1.4.1"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.coverage.run]
omit = [".*", "*/site-packages/*", "tests/*"]
[tool.coverage.report]
fail_under = 79
exclude_also = [
"pass",
"raise NotImplementedError"
]
[tool.flake8]
ignore = ['E231', 'E241']
per-file-ignores = [
'__init__.py:F401',
]
max-line-length = 88
count = true