-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (48 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
52 lines (48 loc) · 1.31 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
[project]
name = "product-listings-manager"
version = "1.1.2"
description = "HTTP interface for finding product listings and interacting with data in composedb."
authors = [
{name = "Ken Dreyer"},
{name = "Red Hat, Inc. and others"}
]
license = {text = "MIT"}
readme = "README.rst"
requires-python = ">=3.9,<3.15"
dependencies = [
"fastapi>=0.118.0",
"gunicorn>=23.0.0",
"python-dateutil>=2.8.2",
"SQLAlchemy>=2.0.35",
"psycopg2-binary>=2.9.8",
"koji>=1.35.0",
"gssapi>=1.8.2",
"python-ldap>=3.4.4",
"requests-gssapi>=1.3.0",
"uvicorn[standard]>=0.37.0",
"opentelemetry-exporter-otlp-proto-http>=1.22.0",
"opentelemetry-instrumentation-fastapi>=0.43b0",
"opentelemetry-instrumentation-requests>=0.43b0",
"opentelemetry-instrumentation-sqlalchemy>=0.43b0",
]
[project.optional-dependencies]
test = [
"factory-boy>=3.3.0",
"pytest>=8.3.3",
"pytest-cov>=7.0.0",
"httpx>=0.28.0",
]
[project.urls]
Homepage = "https://github.com/release-engineering/product-listings-manager"
Repository = "https://github.com/release-engineering/product-listings-manager"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.ruff.lint]
extend-select = [
"I", # isort
"N", # pep8-naming
"UP", # pyupgrade
"FURB", # refurb
"PERF", # Perflint
]