-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
57 lines (52 loc) · 1.23 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]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "Shrimp"
version = "0.0.1"
authors = [
{name="Raphaël Forment", email="[email protected]"},
]
description = "Live Coding with Python"
readme = "README.md"
requires-python = ">= 3.10"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"PyAutoGUI >= 0.9.54",
"mido >= 1.3.0",
"pyfiglet >= 1.0.2",
"parsy>=1.4.0",
"ipython>=8.0.0",
"parsimonious>=0.9.0",
"appdirs >= 1.4.4",
"LinkPython-extern >= 1.0.0",
"rich >= 13.7.1",
"ptpython >= 3.0.0",
"osc4py3 >= 1.0.8",
"python-rtmidi >= 1.5.8",
'signalflow >= 0.4.8 ; platform_system != "Windows"'
]
[project.optional-dependencies]
dev = [
"pytest>=8.3.1",
"black>=24.4.2"
]
[tool.black]
line-length = 100
target-version = ['py311']
[tool.pylint."messages control"]
ignore = ["setup.py", "__init__.py"]
disable = "all"
enable = [
"empty-docstring",
"missing-class-docstring",
"missing-function-docstring",
"missing-module-docstring"
]
[project.urls]
Homepage = "https://github.com/Bubobubobubobubo/shrimp"
Issues = "https://github.com/Bubobubobubobubo/shrimp"