-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
57 lines (51 loc) · 1.34 KB
/
pyproject.toml
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
56
57
[build-system]
# setuptools_scm to make all files commited in Git also part of the package
requires = ["setuptools>=69.4.2", "setuptools_scm>=8", "wheel>=0.43.0"]
build-backend = "setuptools.build_meta"
[project]
name = "midi-app-controller"
version = "0.0.12"
description = "Control napari with a MIDI controller."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Framework :: napari",
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
]
dependencies = [
"napari[all]>=0.4.19",
"python-rtmidi>=1.5.8",
"pyyaml>=6.0.1",
"pydantic>=2.7.1",
"appdirs>=1.4.4",
"qtpy>=2.4.1",
"superqt>=0.6.5",
]
[project.urls]
"Source Code" = "https://github.com/midi-app-controller/midi-app-controller"
Documentation = "https://midi-app-controller.readthedocs.io"
[project.entry-points."napari.manifest"]
midi-app-controller = "midi_app_controller:napari.yaml"
[project.optional-dependencies]
testing = [
"pytest>=8.2.0",
"pytest-cov>=5.0.0",
"pytest-qt>=4.0.2"
]
dev = [
"midi-app-controller[testing]",
"pre-commit>=3.7.0",
]
[tool.setuptools.packages.find]
namespaces = true
[tool.ruff.lint]
select = [
"E", "W", # pycodestyle
"F", # Pyflakes
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
"I", # isort
"C4", # flake8-comprehensions
]