-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 970 Bytes
/
pyproject.toml
File metadata and controls
44 lines (40 loc) · 970 Bytes
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
[project]
name = "harmonica"
version = "0.1.0"
description = "A Python library for the generation, analysis and transformation of musical objects."
authors = [
{name = "Josiah Huergo", email = "josiah@siahbug.com"}
]
license = "MIT"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
"mido>=1.3.3",
"notebook>=7.4.7",
"python-rtmidi>=1.5.8",
"more-itertools>=10.8.0"
]
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["harmonica"]
[tool.pyright]
typeCheckingMode = "basic"
[tool.mypy]
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
disallow_incomplete_defs = false
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
ignore_missing_imports = true
warn_unreachable = true
exclude = [
"./tests/*",
"./docs/*"
]