-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (50 loc) · 1.19 KB
/
Copy pathpyproject.toml
File metadata and controls
59 lines (50 loc) · 1.19 KB
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
[project]
name = "mimir"
version = "0.3.0"
description = "Warehouse-scoped replenishment review client for Parqcast exports and Odoo 18/19"
authors = [
{ name = "DataStruct s.r.o.", email = "info@datastruct.tech" }
]
requires-python = "==3.12.3"
dependencies = [
"pyarrow>=18.0",
"openpyxl>=3.1",
"boto3>=1.34",
]
[project.urls]
Homepage = "https://datastruct.tech"
Repository = "https://github.com/datastructsro/mimir"
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"ruff>=0.8",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["odoo_addon/mimir_core"]
[tool.ruff]
target-version = "py312"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I", "W"]
[tool.pyright]
include = ["odoo_addon/mimir_core"]
pythonVersion = "3.12"
typeCheckingMode = "basic"
reportMissingImports = "warning"
reportUnknownMemberType = "none"
reportUnknownArgumentType = "none"
reportUnknownVariableType = "none"
[tool.pytest.ini_options]
testpaths = ["tests"]
[dependency-groups]
dev = [
"pyarrow-stubs>=20",
"pyright>=1.1.408",
"pytest>=9.0.3",
"ruff>=0.8",
"types-openpyxl>=3.1",
"numpy>=2.0",
]