-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #50 from iluvcapra/pt-2024.10
Pro Tools 2024.10 Support
- Loading branch information
Showing
4 changed files
with
36 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,5 @@ ptsl.egg-info/* | |
.DS_Store | ||
docs/build/ | ||
.vscode/settings.json | ||
dist/ | ||
poetry.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,12 @@ | ||
[build-system] | ||
requires = ["flit_core >=3.2,<4"] | ||
build-backend = "flit_core.buildapi" | ||
# https://python-poetry.org/docs/pyproject/ | ||
|
||
[project] | ||
[tool.poetry] | ||
name = "py-ptsl" | ||
authors = [{name = "Jamie Hardt", email = "[email protected]"}] | ||
version = "500.0.0" | ||
description = "Native Python PTSL (Pro Tools Scripting Library) RPC interface" | ||
authors = ["Jamie Hardt <[email protected]>"] | ||
license = "BSD-3-Clause" | ||
readme = "README.md" | ||
dynamic = ["version", "description"] | ||
license = {file = 'LICENSE'} | ||
requires-python = "~=3.8" | ||
classifiers = [ | ||
"Development Status :: 4 - Beta", | ||
"License :: OSI Approved :: BSD License", | ||
|
@@ -20,35 +18,42 @@ classifiers = [ | |
"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" | ||
] | ||
dependencies = [ | ||
'grpcio >= 1.51.1', | ||
'protobuf ~= 5.26.1' | ||
] | ||
packages = [{ include = 'ptsl' }] | ||
|
||
[tool.flit.module] | ||
name = "ptsl" | ||
[tool.poetry.urls] | ||
Tracker = "https://github.com/iluvcapra/py-ptsl/issues" | ||
|
||
[project.optional-dependencies] | ||
doc = [ | ||
'sphinx >= 5.3.0', | ||
'sphinx_rtd_theme >= 1.1.1', | ||
] | ||
dev = [ | ||
'grpcio-tools >= 1.53.0' | ||
] | ||
[tool.poetry.dependencies] | ||
python = "^3.8" | ||
grpcio = ">= 1.51.1" | ||
protobuf = "~= 5.26.1" | ||
|
||
[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.poetry.group.dev] | ||
optional = true | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
grpcio-tools = ">= 1.53.0" | ||
|
||
[tool.poetry.group.doc] | ||
optional = true | ||
|
||
[tool.poetry.group.doc.dependencies] | ||
sphinx = '>= 5.3.0' | ||
sphinx_rtd_theme = '>= 1.1.1' | ||
|
||
[build-system] | ||
requires = ["poetry-core"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.pylint.'MESSAGES CONTROL'] | ||
ignored-modules = [ | ||
|