-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (48 loc) · 1.1 KB
/
pyproject.toml
File metadata and controls
57 lines (48 loc) · 1.1 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
47
48
49
50
51
52
53
54
55
56
57
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "solrguard"
version = "0.2.0"
description = "Search Change Governance toolkit for Apache Solr"
readme = "README.md"
requires-python = ">=3.11"
license = { text = "Apache-2.0" }
authors = [
{ name = "SolrGuard Contributors" }
]
dependencies = [
"typer>=0.12.3",
"httpx>=0.27.0",
"PyYAML>=6.0.1",
"Jinja2>=3.1.4",
"fastapi>=0.115.0",
"uvicorn>=0.30.0",
]
[project.optional-dependencies]
dev = [
"pytest>=8.2.0",
"ruff>=0.5.0",
]
[project.scripts]
solrguard = "schema_lens.cli:app"
schema-lens = "schema_lens.cli:app"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
include = ["schema_lens*", "solrguard*"]
[tool.setuptools.package-data]
schema_lens = ["report/templates/*.j2"]
[tool.pytest.ini_options]
minversion = "8.0"
addopts = "-q"
testpaths = ["tests"]
markers = [
"integration: marks tests that require external services",
]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "I", "B", "UP"]
ignore = ["B008"]