-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
pyproject.toml
49 lines (43 loc) · 1.05 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "gentoopm"
authors = [{name = "Michał Górny", email = "[email protected]"}]
readme = "README.rst"
dynamic = ["version", "description"]
license = {text = "GPL-2.0-or-later"}
requires-python = ">=3.9"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v2 or later (GPLv2+)",
"Operating System :: POSIX",
"Programming Language :: Python",
"Topic :: System :: Installation/Setup",
]
[project.optional-dependencies]
pkgcore = ["pkgcore"]
portage = ["portage"]
test = [
"pkgcore",
"portage",
"pytest",
]
[project.scripts]
gentoopmq = "gentoopm.querycli:main"
[project.urls]
Homepage = "https://github.com/mgorny/gentoopm/"
[tool.flit.sdist]
include = [
"COPYING",
"test-root",
"tox.ini",
]
[[tool.mypy.overrides]]
module = [
"pkgcore.*",
"portage.*",
]
ignore_missing_imports = true