-
Notifications
You must be signed in to change notification settings - Fork 7
/
pyproject.toml
39 lines (33 loc) · 1.03 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "smartliverebuild"
authors = [{name = "Michał Górny", email = "[email protected]"}]
dynamic = ["version", "description"]
readme = {file = "README", "content-type" = "text/x-rst" }
license = {file = "COPYING" }
classifiers = [
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Environment :: Plugins',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX',
'Programming Language :: Python',
'Topic :: System :: Installation/Setup',
]
dependencies = [
"gentoopm",
]
[project.optional-dependencies]
pkgcore = ["gentoopm[pkgcore]"]
portage = ["gentoopm[portage]"]
[project.scripts]
"smart-live-rebuild" = "smartliverebuild.cli:setuptools_main"
[project.urls]
Homepage = "https://github.com/mgorny/smart-live-rebuild/"
[tool.flit.sdist]
include = ["*.example", "COPYING"]
[tool.pytest.ini_options]
addopts = "--doctest-modules"