This repository was archived by the owner on May 25, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.cfg
More file actions
57 lines (54 loc) · 1.54 KB
/
setup.cfg
File metadata and controls
57 lines (54 loc) · 1.54 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
[metadata]
name = midiplayer
description = Play MIDI files to a MIDI port.
long_description = file: README.md
long_description_content_type = text/markdown
license = MIT
license_files =
LICENSE
author = m_k
keywords = midi, player
classifiers =
Development Status :: 2 - Pre-Alpha
Environment :: Console
Intended Audience :: End Users/Desktop
License :: OSI Approved :: MIT License
Natural Language :: English
Operating System :: OS Independent
Programming Language :: Python :: 3 :: Only
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Topic :: Multimedia :: Sound/Audio :: MIDI
Topic :: Multimedia :: Sound/Audio :: Players
url = https://github.com/MarkKoz/comp-522/tree/proj3
project_urls =
Source = https://github.com/MarkKoz/comp-522/tree/proj3
Tracker = https://github.com/MarkKoz/comp-522/issues
[options]
packages = find:
python_requires = >=3.8
install_requires =
mido>=1.1
python-rtmidi>=1
[options.entry_points]
console_scripts =
midiplayer = midiplayer.__main__:main
[flake8]
docstring-convention = all
exclude = __pycache__,__pypackages__,venv,.venv
max-line-length = 100
ignore =
E203, W503,
# Missing Docstrings
D100,D104,D105,D107,
# Docstring Whitespace
D203,D213,D214,D215,
# Docstring Quotes
D301,D302,
# Docstring Content
D401,D416,
# Type Annotations
ANN002,ANN003,ANN101,ANN102,ANN204,ANN206
per-file-ignores = **/__init__.py:F401,F403,F405,tests/*:D,ANN
ignore-names = mcs