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
| [build-system]
| requires = ["hatchling"]
| build-backend = "hatchling.build"
|
| [project]
| name = "archbuild"
| version = "2.0.0"
| description = "Automatic AUR package building and repository management for Arch Linux"
| readme = "README.md"
| license = "MIT"
| requires-python = ">=3.11"
| authors = [
| { name = "Joel", email = "joelgrun@gmail.com" }
| ]
| keywords = ["arch", "linux", "aur", "pacman", "repository", "automation"]
| classifiers = [
| "Development Status :: 4 - Beta",
| "Environment :: Console",
| "Intended Audience :: System Administrators",
| "License :: OSI Approved :: MIT License",
| "Operating System :: POSIX :: Linux",
| "Programming Language :: Python :: 3.11",
| "Programming Language :: Python :: 3.12",
| "Topic :: System :: Software Distribution",
| ]
| dependencies = [
| "click>=8.0",
| "pyyaml>=6.0",
| "pydantic>=2.0",
| "aiohttp>=3.8",
| "rich>=13.0",
| ]
|
| [project.optional-dependencies]
| dev = [
| "pytest>=7.0",
| "pytest-asyncio>=0.21",
| "pytest-cov>=4.0",
| "mypy>=1.0",
| "ruff>=0.1",
| ]
|
| [project.scripts]
| archbuild = "archbuild.cli:main"
|
| [tool.hatch.build.targets.wheel]
| packages = ["src/archbuild"]
|
| [tool.ruff]
| target-version = "py311"
| line-length = 100
|
| [tool.ruff.lint]
| select = ["E", "F", "I", "N", "W", "UP"]
|
| [tool.mypy]
| python_version = "3.11"
| strict = true
|
| [tool.pytest.ini_options]
| asyncio_mode = "auto"
| testpaths = ["tests"]
|
|