-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
83 lines (77 loc) · 1.59 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
[tool.poetry]
name = "ros2_data_collection"
version = "0.1.0"
description = ""
authors = ["David Bensoussan <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.8.10,<3.9.7 || >3.9.7,<4.0.0"
pyzbar = "^0.1.9"
opencv-python = "^4.7.0"
numpy = "^1.24.2"
pydantic = "^1.10.4"
Pillow = "^9.4.0"
[tool.poetry.dev-dependencies]
ipython = "^8.10.0"
Jinja2 = "^3.1.2"
typer = {extras = ["all"], version = "^0.7.0"}
qrcode = "^7.4.2"
pypng = "^0.20220715.0"
pre-commit = "^3.0.4"
black = "^23.1.0"
darglint = "^1.8.1"
flake8 = "^6.0.0"
flake8-comprehensions = "^3.10.1"
flake8-copyright = "^0.2.4"
flake8-debugger = "^4.1.2"
flake8-executable = "^2.1.3"
flake8-functions = "^0.0.7"
flake8-logging-format = "^0.9.0"
flake8-pep3101 = "^2.0.0"
flake8-polyfill = "^1.0.2"
flake8-pyi = "^23.1.2"
flake8-quotes = "^3.3.2"
flake8-variables-names = "^0.0.5"
pep8-naming = "^0.13.3"
pydeps = "^1.11.1"
pylint = "^2.16.2"
cmake-format = "^0.6.13"
codespell = "^2.2.2"
flake8-bugbear = "^23.2.13"
flake8-use-fstring = "^1.4"
fastcov = "^1.14"
pandas = "<2"
streamlit = "^1.21.0"
plotly = "^5.14.1"
SQLAlchemy = "^2.0.11"
minio = "^7.1.14"
psycopg2-binary = "^2.9.6"
strictdoc = "^0.0.40"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.black]
diff = false
verbose = false
line-length = 100
target-version = ['py310']
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[tool.pycln]
all = true
[tool.isort]
multi_line_output = 3
line_length = 100
include_trailing_comma = true