forked from missionpinball/mpf-mc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (71 loc) · 2.93 KB
/
pyproject.toml
File metadata and controls
79 lines (71 loc) · 2.93 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[project]
name = "mpf-mc"
description = "Mission Pinball Framework Media Controller"
readme = "README.md"
requires-python = ">=3.7, <3.10"
license = {text = "MIT"}
authors = [{ name = "The Mission Pinball Framework Team", email = "brian@missionpinball.org"}]
keywords = ["pinball"]
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Natural Language :: English",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Topic :: Artistic Software",
"Topic :: Games/Entertainment :: Arcade"
]
dependencies = [
"ruamel.yaml == 0.15.42", # newer than this requires c requires compiled c lib, currently no Mac arm versions
"kivy >=2.0.0",
"psutil ==5.9.1",
"Pygments >=2.6.1",
"kivy_deps.sdl2 >= 0.3.1; platform_system=='Windows'",
"kivy_deps.glew >= 0.3.0; platform_system=='Windows'",
"kivy_deps.gstreamer >= 0.3.1; platform_system=='Windows'",
"ffpyplayer >= 4.3.2"
]
dynamic = ["version"]
[project.urls]
homepage = "https://missionpinball.org"
docs = "https://docs.missionpinball.org"
support-forum = "https://groups.google.com/g/mpf-users"
[project.entry-points."mpf.config_player"]
sound_player = "mpfmc.config_players.plugins.sound_player:register_with_mpf"
sound_loop_player = "mpfmc.config_players.plugins.sound_loop_player:register_with_mpf"
playlist_player = "mpfmc.config_players.plugins.playlist_player:register_with_mpf"
widget_player = "mpfmc.config_players.plugins.widget_player:register_with_mpf"
slide_player = "mpfmc.config_players.plugins.slide_player:register_with_mpf"
track_player = "mpfmc.config_players.plugins.track_player:register_with_mpf"
display_light_player = "mpfmc.config_players.plugins.display_light_player:register_with_mpf"
[project.entry-points."mpf.command"]
mc = "mpfmc.commands.mc:get_command"
imc = "mpfmc.commands.imc:get_command"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "mpfmc._version.__version__"}
[tool.setuptools.packages.find]
include = ["mpfmc*"]
# TODO when setuptools_scm switches to SemVer, we can prob use this for versioning
# [tool.setuptools_scm]
# write_to = "mpfmc/_version.py"
[build-system]
requires = [
"setuptools >= 63",
"setuptools_scm[toml] >= 6.2",
"cython >= 0.29, <3.0",
"pkgconfig",
"kivy_deps.sdl2 >= 0.3.1; platform_system=='Windows'",
"kivy_deps.sdl2-dev >= 0.3.1; platform_system=='Windows'",
"kivy_deps.glew >= 0.3.0; platform_system=='Windows'",
"kivy_deps.glew-dev >= 0.3.0; platform_system=='Windows'",
"kivy_deps.gstreamer >= 0.3.1; platform_system=='Windows'",
"kivy_deps.gstreamer-dev >= 0.3.1; platform_system=='Windows'",
]
build-backend = "setuptools.build_meta"