-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
55 lines (50 loc) · 1.42 KB
/
pyproject.toml
File metadata and controls
55 lines (50 loc) · 1.42 KB
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
45
46
47
48
49
50
51
52
53
54
55
[project]
name = "iipyper"
version = "0.5.0b0"
description = "A Python package for rapid prototyping with MIDI and OSC"
authors = [
{name = "Victor Shepardson", email = "victor.shepardson@gmail.com"},
{name = "Jack Armitage", email = "jack.armitage@me.com"}
]
license = "MIT"
license-files = ["LICENSE*"]
readme = "README.md"
requires-python = ">=3.10,<3.14"
dependencies = [
"cffi>=1.17.1",
"python-rtmidi>=1.5.7,<2.0.0",
"fire>=0.6.0,<0.8.0",
"mido>=1.3.0,<2.0.0",
"python-osc>=1.8.3,<2.0.0",
"sounddevice>=0.4.6,<0.5.0",
"textual>=2.0.0,<9.0.0",
"pydantic>=2.5.2,<3.0.0",
"pydantic-numpy>=8.0.0,<9.0.0",
]
[project.urls]
repository = "https://github.com/Intelligent-Instruments-Lab/iipyper"
documentation = "https://intelligent-instruments-lab.github.io/iipyper/"
[dependency-groups]
dev = [
"pytest>=7.4.3,<8.0.0",
"mkdocs>=1.5.3,<2.0.0",
"mkdocstrings[python]>=0.23.0",
"mkdocs-gen-files>=0.5.0",
"mkdocs-include-markdown-plugin>=6.0.4",
"mkdocs-material>=9.4.8",
"mkdocs-material-extensions>=1.3",
"mkdocs-autorefs>=0.5.0",
]
[build-system]
requires = ["uv_build>=0.10.4,<0.11.0"]
build-backend = "uv_build"
[[tool.uv.index]]
name = "testpypi"
url = "https://test.pypi.org/simple/"
publish-url = "https://test.pypi.org/legacy/"
explicit = true
[[tool.uv.index]]
name = "pypi"
url = "https://pypi.org/simple/"
publish-url = "https://pypi.org/legacy/"
explicit = true