-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
45 lines (38 loc) · 1.09 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
[project]
name = "py2max"
authors = [
{name = "Shakeeb Alireza", email = "[email protected]"},
]
version = "0.1.1"
description = "A library for offline generation of Max/MSP patcher (.maxpat) files."
readme = "README.md"
requires-python = ">=3.7"
keywords = ["Max", "maxpat", "offline"]
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
]
dependencies = []
[project.optional-dependencies]
dev = ["check-manifest", "ruff"]
test = ["pytest", "pytest-cov"]
[project.urls]
"Homepage" = "https://github.com/shakfu/py2max"
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[tool.pylint]
max-line-length = 88
disable = [
"C0103", # (invalid-name)
"C0302", # (too-many-lines)
"R0902", # (too-many-instance-attributes)
"R0904", # (too-many-public-methods)
"R0913", # (too-many-arguments)
"R1735", # (use-dict-literal)
"W0622", # (redefined-builtin)
]