-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (41 loc) · 1.07 KB
/
pyproject.toml
File metadata and controls
46 lines (41 loc) · 1.07 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
[project]
name = "job-executor"
version = "0.1.0"
description = ""
authors = [{ name = "Microdata Developers", email = "microdata-dev@ssb.no" }]
requires-python = ">=3.13"
dependencies = [
"pyarrow>=21.0.0,<22",
"pydantic>=2.6.1,<3",
"requests>=2.32.4,<3",
"pandas>=2.2.1,<3",
"urllib3>=2.5.0,<3",
"microdata-tools==1.10.3",
]
[dependency-groups]
dev = [
"pre-commit>=4.3.0",
"pytest>=8.0.1,<9",
"pytest-cov>=6.0.0,<7",
"requests-mock>=1.9.3,<2",
"pytest-mock>=3.8.2,<4",
"ruff>=0.11.0,<0.12",
]
[tool.uv]
package = true
exclude-newer = "3 days"
[tool.setuptools.packages.find]
include = ["job_executor", "tests"]
[tool.ruff]
line-length = 80
target-version = "py313"
lint.select = [
"F", # Pyflakes errors (including unused imports, undefined names)
"T", # flake8-type-checking (imports used only for typing)
"E", # pycodestyle errors (style errors)
"W", # pycodestyle warnings
"I", # isort import ordering
"ANN", # type annotation related rules
]
[tool.ruff.lint.per-file-ignores]
"tests/**/*.py" = ["ANN"]