-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (33 loc) · 855 Bytes
/
pyproject.toml
File metadata and controls
39 lines (33 loc) · 855 Bytes
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
[tool.poetry]
name = "plume-python"
version = "1.3.2"
description = "Set of utilities to work with PLM record files."
authors = ["Charles JAVERLIAT <charles.javerliat@gmail.com>"]
license = "GPLv3"
readme = "README.md"
repository = "https://github.com/liris-xr/PLUME-Python"
packages = [{ include = "plume" }]
[tool.poetry.dependencies]
python = "^3.10"
numpy = "^1.21.0"
tqdm = "^4.66.4"
lz4 = "^4.3.2"
protobuf = "^5.29.3"
delimited-protobuf = "^1.0.0"
pandas = "^2.2.2"
click = "^8.0.3"
betterproto = "^1.2.5"
typing-extensions = "^4.12.2"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.4"
pre-commit = "^3.7.1"
[tool.setuptools.packages.find]
exclude = ["tests"]
[tool.ruff]
line-length = 79
target-version = "py39"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"