forked from missionpinball/mpf
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
72 lines (65 loc) · 2.33 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
68
69
70
71
72
[project]
name = "mpf"
description = "The Mission Pinball Framework"
readme = "README.md"
requires-python = ">=3.7"
license = {text = "MIT"}
authors = [{ name = "The Mission Pinball Framework Team", email = "[email protected]"}]
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
"pyserial == 3.5",
"pyserial-asyncio == 0.4; platform_system=='Windows'",
"pyserial-asyncio == 0.5; platform_system!='Windows'",
"sortedcontainers == 2.3.0",
"psutil == 5.9.4",
"packaging",
]
dynamic = ["version"]
[project.optional-dependencies]
cli = ['prompt_toolkit==3.0.33', 'asciimatics==1.12.0', 'terminaltables==3.1.0',]
crash_reporter = ['requests==2.28.2']
irc = ['irc==19.0.1']
linux_i2c = ['smbus2_asyncio==0.0.5']
osc = ['python-osc==1.7.4']
pin2dmd = ['pyusb==1.1.0']
rpi = ['apigpio-mpf==0.0.4']
vpe = ['grpcio_tools==1.34.0', 'grpcio==1.34.0', 'protobuf==3.14.0',]
all = [ # currently no way to just use the names from above afaik?
'prompt_toolkit==3.0.33', 'asciimatics==1.12.0', 'terminaltables==3.1.0',
'requests==2.28.2', 'irc==19.0.1', 'smbus2_asyncio==0.0.5',
'python-osc==1.7.4', 'pyusb==1.1.0', 'apigpio-mpf==0.0.4',
'grpcio_tools==1.34.0', 'grpcio==1.34.0', 'protobuf==3.14.0',
]
[project.urls]
homepage = "https://missionpinball.org"
docs = "https://docs.missionpinball.org"
support-forum = "https://groups.google.com/g/mpf-users"
[project.scripts]
mpf = "mpf.commands:run_from_command_line"
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
version = {attr = "mpf._version.__version__"}
[tool.setuptools.packages.find]
include = ["mpf*"]
[build-system]
requires = [
"setuptools >= 63",
"setuptools_scm[toml] >= 6.2",
]
build-backend = "setuptools.build_meta"