Skip to content

Commit

Permalink
Merge pull request #50 from iluvcapra/pt-2024.10
Browse files Browse the repository at this point in the history
Pro Tools 2024.10 Support
  • Loading branch information
iluvcapra authored Nov 22, 2024
2 parents a78ab1d + 5b54320 commit cad9cae
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 31 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ ptsl.egg-info/*
.DS_Store
docs/build/
.vscode/settings.json
dist/
poetry.lock
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@

![](https://img.shields.io/pypi/pyversions/py-ptsl.svg) [![](https://img.shields.io/pypi/v/py-ptsl.svg)](https://pypi.org/project/py-ptsl/) ![](https://img.shields.io/pypi/wheel/py-ptsl.svg)

[![Pro Tools Version - 2024.6](https://img.shields.io/static/v1?label=Pro+Tools+Version&message=2024.6&color=8f228f)](https://github.com/iluvcapra/py-ptsl/blob/master/docs/source/ptsl_versions.rst)
[![PTSL Version - 4](https://img.shields.io/static/v1?label=PTSL+Version&message=4&color=0000ff)](https://github.com/iluvcapra/py-ptsl/blob/master/docs/source/ptsl_versions.rst)
[![Pro Tools Version - 2024.10](https://img.shields.io/static/v1?label=Pro+Tools+Version&message=2024.10&color=8f228f)](https://github.com/iluvcapra/py-ptsl/blob/master/docs/source/ptsl_versions.rst)
[![PTSL Version - 5](https://img.shields.io/static/v1?label=PTSL+Version&message=5&color=0000ff)](https://github.com/iluvcapra/py-ptsl/blob/master/docs/source/ptsl_versions.rst)

# py-ptsl

Expand Down
2 changes: 0 additions & 2 deletions ptsl/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,5 +30,3 @@
from .client import Client
from .engine import Engine, open_engine
from .errors import CommandError

__version__ = '401.0.1'
59 changes: 32 additions & 27 deletions pyproject.toml
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",
Expand All @@ -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 = [
Expand Down

0 comments on commit cad9cae

Please sign in to comment.