-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
67 lines (54 loc) · 1.9 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
61
62
63
64
65
66
67
[project]
name = "palworld-exporter"
version = "1.3.1"
description = "Prometheus exporter for Palword Server"
readme = "README.md"
requires-python = ">=3.9"
license = { file = "LICENSE" }
keywords = ["palworld", "prometheus", "exporter"]
authors = [
{ name = "Robert Bost", email = "bostrt@gmail.com" },
]
maintainers = [
{ name = "Robert Bost", email = "bostrt@gmail.com" },
]
# Classifiers help users find your project by categorizing it.
#
# For a list of valid classifiers, see https://pypi.org/classifiers/
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
"Topic :: System :: Monitoring",
"Topic :: Games/Entertainment",
]
dependencies = [ # Optional
"click>=8",
"click-loglevel>=0.5",
"prometheus-client>=0.19,<0.20",
"requests>=2,<3",
"get_version>=3.5",
"rcon@git+https://github.com/ttk1/py-rcon.git@v1.3.0",
]
[project.optional-dependencies]
dev = ["check-manifest"]
test = ["flake8", "coverage", "pytest", "pyfakefs"]
[project.urls]
"Homepage" = "https://github.com/bostrt/palworld-exporter"
"Bug Reports" = "https://github.com/bostrt/palworld-exporter/issues"
#"Funding" = "https://donate.pypi.org"
#"Say Thanks!" = "http://saythanks.io/to/example"
"Source" = "https://github.com/bostrt/palworld-exporter/"
[project.scripts]
palworld_exporter = "palworld_exporter.main:main"
[build-system]
# These are the assumed default build requirements from pip:
# https://pip.pypa.io/en/stable/reference/pip/#pep-517-and-518-support
requires = ["setuptools>=43.0.0", "wheel"]
build-backend = "setuptools.build_meta"