|
| 1 | +[build-system] |
| 2 | +# https://thiblahute.gitlab.io/mesonpep517/ |
| 3 | +build-backend = "mesonpep517.buildapi" |
| 4 | +requires = [ |
| 5 | + "cython", |
| 6 | + "wheel", |
| 7 | + "mesonpep517 @ git+https://gitlab.com/SpotlightKid/mesonpep517.git@rtmidi", |
| 8 | + "ninja" |
| 9 | +] |
| 10 | + |
| 11 | +[project] |
| 12 | +description = "A Python binding for the RtMidi C++ library implemented using Cython." |
| 13 | +authors = [ |
| 14 | + { name= "Christopher Arndt", email= "[email protected]" }, |
| 15 | +] |
| 16 | +readme = "README.md" |
| 17 | +requires-python = ">=3.7" |
| 18 | +classifiers = [ |
| 19 | + "Development Status :: 5 - Production/Stable", |
| 20 | + "Environment :: MacOS X", |
| 21 | + "Environment :: Win32 (MS Windows)", |
| 22 | + "Environment :: Console", |
| 23 | + "Intended Audience :: Developers", |
| 24 | + "License :: OSI Approved :: MIT License", |
| 25 | + "Operating System :: Microsoft :: Windows", |
| 26 | + "Operating System :: POSIX", |
| 27 | + "Operating System :: MacOS :: MacOS X", |
| 28 | + "Programming Language :: Python", |
| 29 | + "Programming Language :: Python :: 3", |
| 30 | + "Programming Language :: Python :: 3.7", |
| 31 | + "Programming Language :: Python :: 3.8", |
| 32 | + "Programming Language :: Python :: 3.9", |
| 33 | + "Programming Language :: Python :: 3.10", |
| 34 | + "Programming Language :: Python :: 3.11", |
| 35 | + "Topic :: Multimedia :: Sound/Audio :: MIDI", |
| 36 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 37 | +] |
| 38 | +keywords = [ |
| 39 | + "MIDI", |
| 40 | + "multimedia", |
| 41 | + "music", |
| 42 | + "rtmidi", |
| 43 | +] |
| 44 | +meson-python-option-name = "python" |
| 45 | +meson-options = [ |
| 46 | + "-Dwheel=true", |
| 47 | + "--buildtype=plain" |
| 48 | +] |
| 49 | + |
| 50 | +[project.license] |
| 51 | +file = "LICENSE.md" |
| 52 | + |
| 53 | +[project.urls] |
| 54 | +"Bug Tracker" = "https://github.com/SpotlightKid/python-rtmidi/issues" |
| 55 | +"Documentation" = "https://spotlightkid.github.io/python-rtmidi/" |
| 56 | +"Download" = "https://pypi.python.org/pypi/python-rtmidi" |
| 57 | +"Homepage" = "https://github.com/SpotlightKid/python-rtmidi" |
| 58 | +"Source" = "https://gitlab.com/SpotlightKid/python-rtmidi/" |
| 59 | + |
| 60 | +[tool.black] |
| 61 | +line-length = 99 |
| 62 | +target-version = [ |
| 63 | + "py37", |
| 64 | + "py38", |
| 65 | + "py39", |
| 66 | + "py310", |
| 67 | + "py311", |
| 68 | +] |
| 69 | + |
| 70 | +[tool.isort] |
| 71 | +line_length = 99 |
| 72 | +profile = "black" |
| 73 | + |
| 74 | +[tool.pydocstyle] |
| 75 | +match = '(?!test_).*\.pyx?' |
| 76 | +match_dir = '(src|rtmidi)' |
| 77 | +add_ignore = [ |
| 78 | + "D412" |
| 79 | +] |
0 commit comments