forked from missionpinball/mpf-monitor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (44 loc) · 1.42 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
[project]
name = "mpf-monitor"
description = "MPF Monitor"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [{ name = "The Mission Pinball Framework Team", email = "[email protected]"}]
keywords = ["pinball", "mpf"]
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Topic :: Artistic Software",
"Topic :: Games/Entertainment :: Arcade"
]
dependencies = [
# Deps that MPF Monitor needs that MPF also needs are not included here
"PyQt6 >= 6.4.2", # Sept 19, 2023
]
dynamic = ["version"]
[project.urls]
homepage = "https://missionpinball.org"
[project.entry-points."mpf.command"]
monitor = "mpfmonitor.commands.monitor:get_command"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "mpfmonitor._version.__version__"}
[tool.setuptools.packages.find]
include = ["mpfmonitor*"]
[build-system]
requires = [
"setuptools >= 63",
"setuptools_scm[toml] >= 6.2",
]
build-backend = "setuptools.build_meta"