forked from iluvcapra/py-ptsl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
76 lines (69 loc) · 1.76 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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "py-ptsl"
authors = [{name = "Jamie Hardt", email = "[email protected]"}]
readme = "README.md"
dynamic = ["version", "description"]
license = {file = 'LICENSE'}
requires-python = "~=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: BSD License",
"Topic :: Software Development :: Libraries :: Python Modules",
"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",
]
keywords = [
"pro tools",
"scripting",
"grpc",
"automation",
"avid"
]
dependencies = [
'grpcio >= 1.51.1',
'protobuf == 4.25.3'
]
[tool.flit.module]
name = "ptsl"
[project.optional-dependencies]
doc = [
'sphinx >= 5.3.0',
'sphinx_rtd_theme >= 1.1.1',
]
dev = [
'grpcio-tools >= 1.53.0'
]
[project.urls]
Home = "https://github.com/iluvcapra/py-ptsl"
Source = "https://github.com/iluvcapra/py-ptsl"
Tracker = "https://github.com/iluvcapra/py-ptsl/issues"
Documentation = "https://py-ptsl.readthedocs.io"
[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)
]