-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
89 lines (79 loc) · 2.57 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
84
85
86
87
88
89
[project]
dynamic = ["classifiers"]
name = "tab_err"
description = "Fully-controllable error generation for tabular data."
authors = [
{ name = "Philipp Jung", email = "philippjung@posteo.de" },
{ name = "Sebastian Jäger", email = "tab_err@sebastian-jaeger.me" },
]
license = "Apache License 2.0"
[project.urls]
homepage = "https://tab-err.readthedocs.io/latest/"
repository = "https://github.com/calgo-lab/tab_err"
documentation = "https://tab-err.readthedocs.io/latest/"
"Bug Tracker" = "https://github.com/calgo-lab/tab_err/issues"
[tool.poetry]
version = "0.1.2"
readme = "README.md"
keywords = ["tabular-data", "data-quality", "error-modelling", "data-errors"]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: POSIX :: Linux",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
]
[tool.poetry.dependencies]
python = "^3.9,<3.13"
pandas = "^2.2.3"
[tool.poetry.group.dev.dependencies]
ruff = "^0.9.1"
pre-commit = "^4.0.1"
mypy = "^1.14.1"
jupyterlab = "^4.3.2"
sphinx = { version = "^8.1.3", python = ">=3.10" }
myst-parser = { version = "^4.0.0", python = ">=3.10" }
pydata-sphinx-theme = "^0.16.1"
sphinx-autoapi = "^3.4.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.mypy]
python_version = "3.9"
disallow_untyped_defs = true
ignore_missing_imports = true
[tool.ruff]
line-length = 160
target-version = "py39"
fix = true
extend-include = ["*.ipynb"]
[tool.ruff.lint]
select = [
"ALL", # Include all the rules, including new ones
]
ignore = [
"FIX", # Temporary developer notes should not break actions
"COM812", # For compatibility with ruff-format
"ISC001", # For compatibility with ruff-format
"S311", # We do not require cryptographically-sound randomness
"D100", # Do not document public modules
"D104", # Do not document public packages
"TD003", # Allow TODOs without links
"ISC003", # Do not implicietly concatenate strings
]
[tool.ruff.lint.per-file-ignores]
"**/__init__.py" = [
"F401", # Unused imports in __init__ files can make sense
]
"docs/source/conf.py" = [
"A001", # Allow missing __init__.py for docs
"INP001", # Allow builtin shadowing for docs
]
[tool.ruff.lint.pydocstyle]
convention = "google"