Skip to content

Commit

Permalink
Merge branch 'main' into logs
Browse files Browse the repository at this point in the history
  • Loading branch information
mrharpo authored Jan 16, 2024
2 parents 62834fc + a2382f3 commit 0d6a2c6
Showing 1 changed file with 17 additions and 13 deletions.
30 changes: 17 additions & 13 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,27 +2,31 @@
name = "holophonor"
dynamic = ["version"]
description = "Live looping, unlimited!"
authors = [
{name = "Quaternion Media", email = "[email protected]"},
]
dependencies = [
"pluggy<1.1,>=1.0.0",
"python-rtmidi<1.5,>=1.4.9",
"loguru>=0.6.0",
]
authors = [{ name = "Quaternion Media", email = "[email protected]" }]
dependencies = ["pluggy~=1.0", "python-rtmidi~=1.4", "loguru~=0.6"]
requires-python = ">=3.8.1, < 4"
readme = "README.md"
license = {text = "MIT"}

[project.scripts]
holophonor = "holophonor.main.py"

license = { text = "MIT" }

[tool.pdm]
version = { source = "file", path = "holophonor/_version.py" }

[project.scripts]
holophonor = "holophonor.main:main"

[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"

[tool.ruff]
ignore = [
# line too long
"E501",
# Ambiguous variable names
"E741",
# imported but unused
"F401",
# star imports
"F403",
"F405",
]

0 comments on commit 0d6a2c6

Please sign in to comment.