-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
203 lines (174 loc) · 4.63 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
requires-python = ">=3.8"
name = "csvw-ontomap"
description = "Generate CSVW (CSV on the Web) metadata for CSV files. Automatically extract columns datatypes, if they are categorical, which values are accepted, and map columns to ontology terms."
readme = "README.md"
license = { file = "LICENSE.txt" }
authors = [
{ name = "Vincent Emonet", email = "vincent.emonet@gmail.com" },
]
maintainers = [
{ name = "Vincent Emonet", email = "vincent.emonet@gmail.com" },
]
keywords = [
"RDF",
"CSVW",
"Data profiling",
"Data mapping",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dynamic = ["version"]
dependencies = [
"typer >=0.6.0",
"pandas",
"ydata-profiling",
"csvw",
"openpyxl",
"pyreadstat",
"qdrant-client[fastembed]",
"owlready2",
"oxrdflib",
]
[project.scripts]
csvw-ontomap = "csvw_ontomap.__main__:cli"
[project.optional-dependencies]
test = [
"pytest >=7.4.0",
"pytest-cov >=3.0.0",
"pre-commit",
"mypy >=1.4.1",
"pip-tools",
"csvw",
]
[project.urls]
Homepage = "https://github.com/vemonet/csvw-ontomap"
Documentation = "https://github.com/vemonet/csvw-ontomap"
History = "https://github.com/vemonet/csvw-ontomap/releases"
Tracker = "https://github.com/vemonet/csvw-ontomap/issues"
Source = "https://github.com/vemonet/csvw-ontomap"
# ENVIRONMENTS AND SCRIPTS
[tool.hatch.envs.default]
features = [
"test",
]
post-install-commands = [
"pre-commit install",
]
[tool.hatch.envs.default.scripts]
dev = "python tests/dev.py {args}"
fmt = [
"pre-commit run --all --all-files",
"mypy",
]
test = [
"fmt",
"pytest {args}",
]
cov = [
"fmt",
"pytest --cov-report html {args}",
]
cov-check = [
"python -c 'import webbrowser; webbrowser.open(\"http://0.0.0.0:3000\")'",
"python -m http.server 3000 --directory ./htmlcov",
]
compile = "pip-compile -o requirements.txt pyproject.toml"
[[tool.hatch.envs.all.matrix]]
python = ["3.8", "3.9", "3.10", "3.11"]
## TOOLS
# [tool.hatch.build]
# sources = ["src"]
[tool.hatch.version]
path = "src/csvw_ontomap/__init__.py"
# If you need to import packages from git URLs
# [tool.hatch.metadata]
# allow-direct-references = true
[tool.coverage.run]
source = ["src"]
branch = true
[tool.coverage.report]
omit = ["tests/*"]
[tool.mypy]
files = ["src/"]
strict = true
implicit_reexport = true
follow_imports = "normal"
ignore_missing_imports = true
pretty = true
show_column_numbers = true
warn_no_return = true
warn_unused_ignores = true
warn_redundant_casts = true
disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_any_generics = true
[tool.pytest.ini_options]
addopts = [
"-vvv", # Verbose level 3
"--durations=10", # Show 10 slowest tests durations
"--cov=src",
"--color=yes",
"--cov-report=term-missing",
# "--cov-fail-under=85",
]
filterwarnings = [
"ignore::DeprecationWarning:httpx.*:",
]
[tool.black]
color = true
line-length = 120
target-version = ['py38']
skip-string-normalization = false
# https://github.com/charliermarsh/ruff#supported-rules
[tool.ruff]
src = ["src", "tests"]
target-version = "py38"
line-length = 120
select = [
"I", # isort
"N", # pep8-naming
"S", # bandit
"A", # flake8-builtins
"YTT", # flake8-2020
"B", # flake8-bugbear
"C", # flake8-comprehensions
"ICN", # flake8-import-conventions
"SIM", # flake8-simplify
"TID", # flake8-tidy-imports
"Q", # flake8-quotes
# "FBT", # flake8-boolean-trap
"F", # pyflakes
"UP", # pyupgrade
"E", # pycodestyle errors
"W", # pycodestyle warnings
"PLC", # pylint convention
"PLE", # pylint error
# "PLR", # pylint refactor Magic value used in comparison, consider replacing 400 with a constant variable
"PLW", # pylint warning
"RUF", # ruff specific
"T",
]
ignore = [
"E501", # line too long
"C901", # too complex
"T201", # do not use print
"B008", # do not perform function calls in argument defaults
"E722", "S110", # Do not use bare `except`
]
[tool.ruff.per-file-ignores]
"__init__.py" = ["I", "F401"] # module imported but unused
# Tests can use magic values, assertions, and relative imports
"tests/**/*" = ["PLR2004", "S101", "S105", "TID252"]
[tool.ruff.mccabe]
max-complexity = 10