-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
33 lines (30 loc) · 1.1 KB
/
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
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "aleya-alpaca"
dynamic = ["version"]
description = "Aleya Linux PAckage Assistant"
authors = [{name = "Robin 'Ruadeil' Degen", email = "[email protected]"}]
license = { file = "LICENSE" }
readme = { file = "README.md", content-type = "text/markdown" }
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Build Tools",
"Topic :: System :: Installation/Setup",
"Topic :: System :: Operating System",
"Topic :: System :: Software Distribution",
"Topic :: Utilities",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)"
]
dependencies = []
[project.scripts]
alpaca = "alpaca.main:main"
[tool.setuptools_scm]