-
Notifications
You must be signed in to change notification settings - Fork 147
/
pyproject.toml
60 lines (53 loc) · 1.83 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
50
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["setuptools", "setuptools_scm[toml]"]
build-backend = "setuptools.build_meta"
[project]
name = "honcho"
description = "Honcho: a Python clone of Foreman. For managing Procfile-based applications."
readme = "README.rst"
authors = [
{name = "Nick Stenning", email = "[email protected]"}
]
keywords = ["sysadmin", "process", "procfile"]
urls."Source" = "https://github.com/nickstenning/honcho"
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
]
dependencies = [
'backports.entry-points-selectable; python_version<"3.10"',
'colorama; sys_platform=="win32"',
]
dynamic = ["version"]
[project.optional-dependencies]
export = ["jinja2>=3.1.2,<4"]
docs = ["sphinx"]
[project.scripts]
honcho = "honcho.command:main"
[project.entry-points.honcho_exporters]
runit = "honcho.export.runit:Export"
supervisord = "honcho.export.supervisord:Export"
systemd = "honcho.export.systemd:Export"
upstart = "honcho.export.upstart:Export"
[tool.ruff]
format.exclude = ["honcho/_version.py"]
lint.select = ["E4", "E7", "E9", "F", "I", "N", "RUF"]
[tool.setuptools.packages.find]
where = ["."]
include = ["honcho*"]
exclude = ["tests*"]
[tool.setuptools_scm]
write_to = "honcho/_version.py"