-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (38 loc) · 889 Bytes
/
pyproject.toml
File metadata and controls
44 lines (38 loc) · 889 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 = "huh-computer-music"
version = "0.1.0"
description = "A tiny computer music library powered by NumPy"
authors = [
{ name = "Jason Doar", email = "jbdoar@gmail.com" },
{ name = "Alex Merose", email = "al@merose.com" },
]
license = "MIT"
dependencies = [
"click<8.1.0",
"numpy",
"rx==1.6.1",
"scipy",
"sounddevice",
]
readme = "README.md"
requires-python = ">= 3.9"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
bish = "hcm:cli"
[tool.rye]
managed = true
dev-dependencies = [
"jupyter>=1.1.1",
"matplotlib>=3.9.2",
"sphinx>=8.1.3",
"mypy>=1.12.1",
"hacking>=7.0.0",
]
[tool.rye.scripts]
lint = "flake8 --exclude=lib/,bin/,docs/conf.py --ignore F401,H301,E203,E241 hcm"
[tool.hatch.metadata]
allow-direct-references = true
[tool.hatch.build.targets.wheel]
packages = ["hcm"]