-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
34 lines (31 loc) · 953 Bytes
/
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
[project]
name = "arch-github-package"
version = "0.0.7"
description = "Convert GitHub project releases to Archlinux package, with autoupdate."
readme = "README.md"
requires-python = ">=3.7"
authors = [
{ name="Jin Liu", email="m.liu.jin@gmail.com" },
]
keywords = ["arch", "archlinux", "AUR", "github", "package", "package-manager"]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Topic :: System"
]
dependencies = [
"typer==0.9.*",
"PyGithub==1.58.*",
"tabulate==0.9.*",
]
[project.urls]
"Repository" = "https://github.com/jinliu/arch-github-package"
"Bug Tracker" = "https://github.com/jinliu/arch-github-package/issues"
[project.scripts]
agp = "arch_github_package.main:app"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"