-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
60 lines (52 loc) · 1.26 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
[build-system]
requires = ["setuptools", "setuptools-scm", "ruff"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["omega_format*"]
namespaces = false
[project]
name = "omega_format"
authors = [
{name = "ika - RWTH Aachen", email = "[email protected]"},
]
description = "OMEGA Format Library (read/write/visualize)"
readme = "README.md"
requires-python = ">=3.7"
keywords = ["one", "two"]
license = {text = "BSD-3-Clause"}
classifiers = [
"Programming Language :: Python :: 3",
"License :: None",
"Operating System :: OS Independent",
]
dependencies = [
'numpy',
'h5py',
'tqdm',
'typer',
'xarray',
'pydantic>=2',
'pydantic-settings',
'pydantic-numpy',
'parse',
'shapely',
'lxml'
]
version = "4.3"
[project.optional-dependencies]
visualization = ['pyqtgraph', 'pyqt5']
doc = ['pdoc3']
test = ['pytest', 'pytest-sugar', 'pytest-env','pytest-cov']
complete = ['pyqtgraph', 'pyqt5', 'pdoc3', 'pytest']
[project.scripts]
omega_format = "omega_format.cli:app"
[tool.pytest]
addopts = "-ra -q"
[tool.ruff]
lint.ignore = ["E741"]
[tool.setuptools.package-data]
"omega_format" = [
"visualization/ui/main.ui",
"visualization/ui/icon.svg",
"perception/config.json"
]