-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (34 loc) · 935 Bytes
/
pyproject.toml
File metadata and controls
40 lines (34 loc) · 935 Bytes
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
[build-system]
requires = ["hatchling", "hatch-requirements-txt"]
build-backend = "hatchling.build"
[project]
name = "ymir"
version = "0.1.0"
description = "AI-powered RHEL package maintenance automation"
readme = "README.md"
requires-python = ">=3.13,<3.14"
dynamic = ["dependencies"]
[tool.hatch.metadata.hooks.requirements_txt]
files = ["requirements-global.txt", "requirements.txt"]
[project.optional-dependencies]
test = [
"pytest>=8.4.1",
"pytest-asyncio>=1.1.0",
"pytest-cov>=6.0.0",
"pytest-mock>=3.14.0",
"flexmock>=0.12.2",
"coverage>=7.6.0",
"pytest-xdist>=3.6.0",
"pytest-html>=4.1.1",
"httpx>=0.28.0",
"koji",
"pyforgejo==2.0.4",
]
[tool.hatch.build.targets.wheel]
packages = ["ymir"]
exclude = ["ymir/common", "ymir/tools"]
[tool.uv.workspace]
members = ["ymir/common", "ymir/tools"]
[tool.uv.sources]
ymir-common = { workspace = true }
ymir-tools = { workspace = true }