-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (32 loc) · 798 Bytes
/
pyproject.toml
File metadata and controls
38 lines (32 loc) · 798 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "mscales"
version = "1.4.1"
description = "A Python package to generate, visualize, and sonify musical scales."
readme = "README.md"
authors = [{name = "Fabian C. Moss", email = "fabianmoss@gmail.com"}]
license = {text = "MIT"}
requires-python = ">=3.11"
dependencies = [
"numpy>=1.26.4",
"pretty_midi>=0.2.10",
"matplotlib>=3.8.4",
]
[project.optional-dependencies]
dev = [
"pytest",
"ruff",
]
[tool.ruff]
line-length = 88
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "B", "C4", "SIM"]
ignore = []
[tool.ruff.lint.per-file-ignores]
"__init__.py" = ["F401"]
"mscales/tests/*" = ["F401"]
[tool.pytest.ini_options]
testpaths = ["mscales/tests"]