forked from SpotlightKid/python-rtmidi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
73 lines (57 loc) · 1.72 KB
/
setup.cfg
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
[egg_info]
tag_build = .dev
#tag_date = true
#tag_svn_revision = true
[aliases]
# A handy alias to build a release (source and egg)
release = build filltmpl egg_info -Db "" sdist --formats=zip,gztar bdist_wheel
[filltmpl]
templates = INSTALL.rst.in
[build_sphinx]
source-dir = docs/
build-dir = docs/build
all_files = 1
[upload_sphinx]
upload-dir = docs/build/html
[flake8]
ignore = E116, E265, E266, E731, W504
max-line-length = 100
exclude = examples/osc2midi/lru_cache.py
[pydocstyle]
match = (?!test_).*\.pyx?
match_dir = (src|rtmidi)
[metadata]
name = python-rtmidi
description = A Python binding for the RtMidi C++ library implemented using Cython.
author = Christopher Arndt
author_email = [email protected]
license = MIT License
long_description = file: README.rst
url = https://github.com/SpotlightKid/python-rtmidi
download_url = https://pypi.python.org/pypi/python-rtmidi
repository = https://github.com/SpotlightKid/python-rtmidi.git
keywords =
midi
music
rtmidi
classifiers =
Development Status :: 5 - Production/Stable
Environment :: MacOS X
Environment :: Win32 (MS Windows)
Environment :: Console
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Operating System :: Microsoft :: Windows
Operating System :: POSIX
Operating System :: MacOS :: MacOS X
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Topic :: Multimedia :: Sound/Audio :: MIDI
Topic :: Software Development :: Libraries :: Python Modules
[options]
zip_safe = False
include_package_data = True