forked from mido/mido
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
80 lines (69 loc) · 1.81 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
73
74
75
76
77
78
79
80
# PEP 621 (https://peps.python.org/pep-0621/) project metadata
# Format: https://toml.io/en/
[build-system]
requires = ["setuptools>=61.0.0", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[project]
name = "mido"
# version is dynamic
description = "MIDI Objects for Python"
readme = "README.rst"
requires-python = ">=3.7"
license = { text = "MIT" }
authors = [
{ name = "Ole Martin Bjorndalen", email = "ombdalen@gmail.com" },
]
maintainers = [
{ name = "Radovan Bast", email = "radovan.bast@gmail.com" },
{ name = "Raphaël Doursenaud", email = "rdoursenaud@gmail.com" },
]
keywords = ["python", "midi", "midifile"]
classifiers = [
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.7',
]
dependencies = [
"importlib_metadata; python_version<'3.8'",
"packaging",
]
dynamic = ["version"]
[project.urls]
documentation = "https://mido.readthedocs.io"
source = "https://github.com/mido/mido"
[project.optional-dependencies]
dev = [
'check-manifest>=0.35',
'flake8>=3.7.0',
'pytest>=6.0',
'sphinx>=1.6.3',
]
ports = ["python-rtmidi>=1.1.0"]
[project.scripts]
mido-play = "scripts.mido_play:main"
mido-ports = "scripts.mido_ports:main"
mido-serve = "scripts.mido_serve:main"
mido-connect = "scripts.mido_connect:main"
[tool.setuptools]
packages = ["mido", "mido.backends"]
include-package-data = true
[tool.setuptools.package-dir]
mido = "mido"
[tool.setuptools.package-data]
mido = ["LICENSE"]
[tool.setuptools_scm]
# Enables setuptools-scm
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-rs --quiet"
testpaths = [
"tests",
]
norecursedirs = [
"build",
"dist",
"examples",
]