forked from neurogeek/haproxyctl
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (51 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
55 lines (51 loc) · 1.42 KB
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
[build-system]
requires = [
"packaging>=24.2",
"setuptools>=77.0.3",
]
build-backend = "setuptools.build_meta"
[project]
name = "haproxy-cli"
version = "0.7.2"
description = "A tool to interact with HAProxy."
readme = "README.md"
requires-python = ">=3.11"
authors = [
{ name = "markt.de", email = "github-oss-noreply@markt.de" },
]
keywords = [
"haproxy",
"cli",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: System Administrators",
"Operating System :: POSIX",
"Operating System :: Unix",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Internet :: Proxy Servers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration",
"Topic :: System :: Networking",
]
dependencies = [
]
[project.optional-dependencies]
test = [
"flake8>=5.0.0",
"pytest>=6.0.0",
"pytest-cov>=3.0.0",
"pyfakefs>=5.0.0",
]
[project.urls]
Documentation = "https://github.com/markt-de/haproxy-cli"
Homepage = "https://github.com/markt-de/haproxy-cli"
Issues = "https://github.com/markt-de/haproxy-cli/issues"
Repository = "https://github.com/markt-de/haproxy-cli.git"
[tool.setuptools.packages.find]
include = ["haproxy*"]
exclude = ["haproxy/tests"]