-
Notifications
You must be signed in to change notification settings - Fork 23
/
pyproject.toml
35 lines (30 loc) · 823 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
[build-system]
requires = [
"setuptools>=30.3.0"
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["procServUtils"]
[project]
name = "procServUtils"
version = "2.9.1-dev"
authors = [
{ name="Ralph Lange", email="[email protected]" },
{ name="William Kirstaedter", email="[email protected]" },
]
description = "Support scripts for procServ"
readme = "README.md"
requires-python = ">=3.6"
dependencies = [
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: GNU GPLv3",
"Operating System :: Unix",
]
[project.scripts]
manage-procs = "procServUtils.manage:entrypoint"
procServ-launcher = "procServUtils.launch:entrypoint"
[project.urls]
"Homepage" = "https://github.com/ralphlange/procServ"
"Bug Tracker" = "https://github.com/ralphlange/procServ/issues"