-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
75 lines (64 loc) · 1.65 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
[build-system]
requires = ["hatchling", "versioningit"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "versioningit"
[tool.versioningit.format]
distance = "{base_version}"
dirty = "{base_version}"
distance-dirty = "{base_version}"
[tool.hatch.metadata]
# required to allow git deps in optional dependencies
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["yard"]
[project]
name = "datatractor-yard"
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",
]
dev = [
"pre-commit",
]
[project.urls]
repository = "https://github.com/datatractor/yard"
[tool.ruff]
target-version = "py310"
[tool.ruff.lint]
select = ["E", "F", "I", "W", "Q"]
ignore = ["E501", "E402"]
fixable = ["A", "B", "C", "D", "E", "F", "I"]
unfixable = []
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"
per-file-ignores = {}
[tool.mypy]
ignore_missing_imports = true
follow_imports = "skip"