This repository has been archived by the owner on May 31, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
72 lines (63 loc) · 1.72 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
[build-system]
requires = ["hatchling", "hatch-vcs >= 0.3.0"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "marda_registry/__init__.py"
[tool.hatch.metadata]
# required to allow git deps in optional dependencies
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["marda_registry"]
[project]
name = "marda-extractors-registry"
readme = "README.md"
dynamic = ["version"]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: System Administrators",
"Intended Audience :: Information Technology",
"Operating System :: OS Independent",
"Topic :: Other/Nonlisted Topic",
"Topic :: Scientific/Engineering",
]
requires-python = ">=3.10"
dependencies = [
"fastapi",
"httpx",
"invoke",
"jinja2",
"linkml ~= 1.6, != 1.6.2",
"linkml-runtime ~= 1.6, != 1.6.1",
"mongomock",
"pre-commit",
"pydantic ~= 2.0",
"uvicorn"
]
[project.optional-dependencies]
test = [
"pytest",
"marda-extractors-api[formats] @ git+https://github.com/marda-alliance/metadata_extractors_api.git",
]
dev = [
"pre-commit",
]
[project.urls]
repository = "https://github.com/marda-alliance/metadata_extractors_registry"
[tool.ruff]
select = ["E", "F", "I", "W", "Q"]
ignore = ["E501", "E402"]
fixable = ["A", "B", "C", "D", "E", "F", "I"]
unfixable = []
extend-exclude = [
"providers",
]
target-version = "py310"
per-file-ignores = {}
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
[tool.mypy]
ignore_missing_imports = true
follow_imports = "skip"