-
Notifications
You must be signed in to change notification settings - Fork 8
/
pyproject.toml
77 lines (68 loc) · 2 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# https://python-poetry.org/docs/pyproject/
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "py-ptsl"
version = "500.1.1"
description = "Native Python PTSL (Pro Tools Scripting Library) RPC interface"
authors = ["Jamie Hardt <[email protected]>"]
license = "BSD-3-Clause"
readme = "README.md"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.8",
"Topic :: Multimedia :: Sound/Audio :: Editors",
]
homepage = "https://github.com/iluvcapra/py-ptsl"
repository = "https://github.com/iluvcapra/py-ptsl"
documentation = "https://py-ptsl.readthedocs.io"
keywords = [
"pro tools",
"scripting",
"grpc",
"automation",
"avid"
]
packages = [{ include = 'ptsl' }]
[tool.poetry.urls]
Tracker = "https://github.com/iluvcapra/py-ptsl/issues"
[tool.poetry.extras]
doc = ['sphinx', 'sphinx_rtd_theme']
[tool.poetry.dependencies]
python = "^3.8"
grpcio = ">= 1.51.1"
protobuf = "~= 5.26.1"
sphinx_rtd_theme = {version= '>= 1.1.1', optional=true}
sphinx = {version= '>= 5.3.0', optional=true}
[tool.poetry.group.dev.dependencies]
grpcio-tools = {version=">= 1.53.0", optional=true}
[tool.pylint.'MESSAGES CONTROL']
ignored-modules = [
"ptsl.PTSL_pb2",
"ptsl.PTSL_pb2_grpc"
]
[tool.pyright]
typeCheckingMode = "basic"
exclude = [
"ptsl/PTSL_pb2.py",
"ptsl/PTSL_pb2_grpc.py"
]
[tool.pylint]
max-line-length = 88
disable = [
"C0103", # (invalid-name)
"C0114", # (missing-module-docstring)
"C0115", # (missing-class-docstring)
"C0116", # (missing-function-docstring)
"R0903", # (too-few-public-methods)
"R0913", # (too-many-arguments)
"W0105", # (pointless-string-statement)
]