-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release 0.1.3. Use setuptools instead of requirements.txt. Reformat c…
…ode. Bump python version to 3.9.
- Loading branch information
1 parent
0f921f8
commit 92de27b
Showing
6 changed files
with
228 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,3 @@ | ||
.local | ||
.local | ||
.ropeproject/ | ||
*.egg-info/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ["setuptools>=42", "wheel"] | ||
build-backend = "setuptools.build_meta" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[metadata] | ||
name = TIC-MIDI | ||
version = 0.1.3 | ||
|
||
[options] | ||
python_requires = >=3.9 | ||
packages = find: | ||
install_requires = | ||
mido>=1.2.0,<=1.3.2 | ||
|
||
[options.extras_require] | ||
dev = | ||
pylsp-mypy | ||
pylsp-rope | ||
python-lsp-isort | ||
python-lsp-server[all] | ||
|
||
[pydocstyle] | ||
ignore = D101,D102,D103,D107,D203,D212 | ||
|
||
[mypy] | ||
allow_redefinition = True |
Oops, something went wrong.