mirror of
https://github.com/iluvcapra/pycmx.git
synced 2025-12-31 08:50:54 +00:00
Compare commits
21 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a717589683 | ||
|
|
f48c164e1b | ||
|
|
be1dc99e94 | ||
|
|
fbdfcddfff | ||
|
|
156828b648 | ||
|
|
1894a143b1 | ||
|
|
c0d278e079 | ||
|
|
7d3a58bff8 | ||
|
|
f1381f5f46 | ||
|
|
dc00b52b61 | ||
|
|
571ffdefd7 | ||
|
|
a79cb02139 | ||
|
|
ce1a0d32bb | ||
|
|
daa5d58a66 | ||
|
|
38ce1445a1 | ||
|
|
552d007360 | ||
|
|
d79fdcc6a8 | ||
|
|
3187a50a6b | ||
|
|
8e8d4f5753 | ||
|
|
cc371cd486 | ||
|
|
795a666a74 |
6
.github/workflows/python-package.yml
vendored
6
.github/workflows/python-package.yml
vendored
@@ -16,8 +16,7 @@ jobs:
|
|||||||
strategy:
|
strategy:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
|
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
- name: Set up Python ${{ matrix.python-version }}
|
- name: Set up Python ${{ matrix.python-version }}
|
||||||
@@ -28,8 +27,7 @@ jobs:
|
|||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
python -m pip install flake8 pytest
|
python -m pip install flake8 pytest
|
||||||
python3 -m pip install -e .
|
python -m pip install -e .
|
||||||
# if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
|
|
||||||
- name: Lint with flake8
|
- name: Lint with flake8
|
||||||
run: |
|
run: |
|
||||||
# stop the build if there are Python syntax errors or undefined names
|
# stop the build if there are Python syntax errors or undefined names
|
||||||
|
|||||||
32
.github/workflows/pythonpublish.yml
vendored
32
.github/workflows/pythonpublish.yml
vendored
@@ -3,7 +3,6 @@ name: Upload Python Package
|
|||||||
on:
|
on:
|
||||||
release:
|
release:
|
||||||
types: [published]
|
types: [published]
|
||||||
workflow_dispatch:
|
|
||||||
|
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
@@ -15,9 +14,9 @@ jobs:
|
|||||||
environment:
|
environment:
|
||||||
name: release
|
name: release
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3.5.2
|
- uses: actions/checkout@v4.2.2
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v4.6.0
|
uses: actions/setup-python@v5.3.0
|
||||||
with:
|
with:
|
||||||
python-version: '3.x'
|
python-version: '3.x'
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
@@ -25,16 +24,19 @@ jobs:
|
|||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install build
|
pip install build
|
||||||
- name: Build package
|
- name: Build package
|
||||||
run: python -m build
|
run: python -m build .
|
||||||
- name: pypi-publish
|
- name: Publish to Pypi
|
||||||
uses: pypa/gh-action-pypi-publish@v1.8.6
|
uses: pypa/gh-action-pypi-publish@v1.12.2
|
||||||
- name: Report to Mastodon
|
|
||||||
uses: cbrgm/mastodon-github-action@v1.0.1
|
|
||||||
with:
|
with:
|
||||||
message: |
|
password: ${{ secrets.PYPI_APIKEY }}
|
||||||
I just released a new version of pycmx, my library for reading CMX EDLs!
|
- name: Send Bluesky Post
|
||||||
#sounddesign #filmmaking #python
|
uses: myConsciousness/bluesky-post@v5
|
||||||
${{ github.server_url }}/${{ github.repository }}
|
with:
|
||||||
env:
|
text: |
|
||||||
MASTODON_URL: ${{ secrets.MASTODON_URL }}
|
I've released a new version of pycmx, my python module for
|
||||||
MASTODON_ACCESS_TOKEN: ${{ secrets.MASTODON_ACCESS_TOKEN }}
|
reading CMX EDLs.
|
||||||
|
link-preview-url: ${{ github.server_url }}/${{ github.repository }}
|
||||||
|
identifier: ${{ secrets.BLUESKY_APP_USER }}
|
||||||
|
password: ${{ secrets.BLUESKY_APP_PASSWORD }}
|
||||||
|
service: bsky.social
|
||||||
|
retry-count: 1
|
||||||
|
|||||||
32
.readthedocs.yaml
Normal file
32
.readthedocs.yaml
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
# .readthedocs.yaml
|
||||||
|
# Read the Docs configuration file
|
||||||
|
# See https://docs.readthedocs.io/en/stable/config-file/v2.html for details
|
||||||
|
|
||||||
|
# Required
|
||||||
|
version: 2
|
||||||
|
|
||||||
|
# Set the version of Python and other tools you might need
|
||||||
|
build:
|
||||||
|
os: ubuntu-20.04
|
||||||
|
tools:
|
||||||
|
python: "3.10"
|
||||||
|
# You can also specify other tool versions:
|
||||||
|
# nodejs: "16"
|
||||||
|
# rust: "1.55"
|
||||||
|
# golang: "1.17"
|
||||||
|
|
||||||
|
# Build documentation in the docs/ directory with Sphinx
|
||||||
|
sphinx:
|
||||||
|
configuration: docs/source/conf.py
|
||||||
|
|
||||||
|
#If using Sphinx, optionally build your docs in additional formats such as PDF
|
||||||
|
formats:
|
||||||
|
- pdf
|
||||||
|
|
||||||
|
#Optionally declare the Python requirements required to build your docs
|
||||||
|
python:
|
||||||
|
install:
|
||||||
|
- method: pip
|
||||||
|
path: .
|
||||||
|
extra_requirements:
|
||||||
|
- doc
|
||||||
@@ -145,7 +145,7 @@ latex_documents = [
|
|||||||
# (source start file, name, description, authors, manual section).
|
# (source start file, name, description, authors, manual section).
|
||||||
man_pages = [
|
man_pages = [
|
||||||
(master_doc, 'pycmx', u'pycmx Documentation',
|
(master_doc, 'pycmx', u'pycmx Documentation',
|
||||||
[author], 1)
|
[author], "3p")
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ copy and reuse this software, refer to the LICENSE file included with the
|
|||||||
distribution.
|
distribution.
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__version__ = '1.2.1'
|
__version__ = '1.2.2'
|
||||||
|
|
||||||
from .parse_cmx_events import parse_cmx3600
|
from .parse_cmx_events import parse_cmx3600
|
||||||
from .transition import Transition
|
from .transition import Transition
|
||||||
|
|||||||
@@ -1,48 +1,40 @@
|
|||||||
[build-system]
|
[tool.poetry]
|
||||||
requires = ["flit_core >=3.2,<4"]
|
|
||||||
build-backend = "flit_core.buildapi"
|
|
||||||
|
|
||||||
[project]
|
|
||||||
name = "pycmx"
|
name = "pycmx"
|
||||||
authors = [{name = "Jamie Hardt", email = "jamiehardt@me.com"}]
|
version = "1.2.3"
|
||||||
|
description = "Python CMX 3600 Edit Decision List Parser"
|
||||||
|
authors = ["Jamie Hardt <jamiehardt@me.com>"]
|
||||||
|
license = "MIT"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
dynamic = ["version", "description"]
|
keywords = [
|
||||||
requires-python = "~=3.7"
|
'parser',
|
||||||
|
'film',
|
||||||
|
'broadcast'
|
||||||
|
]
|
||||||
classifiers = [
|
classifiers = [
|
||||||
'Development Status :: 5 - Production/Stable',
|
'Development Status :: 5 - Production/Stable',
|
||||||
'License :: OSI Approved :: MIT License',
|
'License :: OSI Approved :: MIT License',
|
||||||
'Topic :: Multimedia',
|
'Topic :: Multimedia',
|
||||||
'Topic :: Multimedia :: Video',
|
'Topic :: Multimedia :: Video',
|
||||||
'Topic :: Text Processing',
|
'Topic :: Text Processing',
|
||||||
'Programming Language :: Python :: 3.7',
|
|
||||||
'Programming Language :: Python :: 3.8',
|
'Programming Language :: Python :: 3.8',
|
||||||
'Programming Language :: Python :: 3.9',
|
'Programming Language :: Python :: 3.9',
|
||||||
'Programming Language :: Python :: 3.10',
|
'Programming Language :: Python :: 3.10',
|
||||||
'Programming Language :: Python :: 3.11'
|
'Programming Language :: Python :: 3.11',
|
||||||
|
'Programming Language :: Python :: 3.12',
|
||||||
|
'Programming Language :: Python :: 3.13'
|
||||||
]
|
]
|
||||||
dependencies = [
|
homepage = "https://github.com/iluvcapra/pycmx"
|
||||||
|
documentation = "https://pycmx.readthedocs.io/"
|
||||||
|
repository = "https://github.com/iluvcapra/pycmx.git"
|
||||||
|
urls.Tracker = "https://github.com/iluvcapra/pycmx/issues"
|
||||||
|
|
||||||
]
|
[tool.poetry.extras]
|
||||||
keywords = [
|
doc = ['sphinx', 'sphinx_rtd_theme']
|
||||||
'parser',
|
|
||||||
'film',
|
|
||||||
'broadcast'
|
|
||||||
]
|
|
||||||
|
|
||||||
[tool.flit.module]
|
[tool.poetry.dependencies]
|
||||||
name = "pycmx"
|
python = "^3.8"
|
||||||
|
sphinx = { version='>= 5.3.0', optional=true}
|
||||||
[project.optional-dependencies]
|
sphinx_rtd_theme = {version ='>= 1.1.1', optional=true}
|
||||||
doc = [
|
|
||||||
'sphinx >= 5.3.0',
|
|
||||||
'sphinx_rtd_theme >= 1.1.1',
|
|
||||||
]
|
|
||||||
|
|
||||||
[project.urls]
|
|
||||||
Home = "https://github.com/iluvcapra/pycmx"
|
|
||||||
Documentation = "https://pycmx.readthedocs.io/"
|
|
||||||
Source = "https://github.com/iluvcapra/pycmx.git"
|
|
||||||
Issues = "https://github.com/iluvcapra/pycmx/issues"
|
|
||||||
|
|
||||||
[tool.pyright]
|
[tool.pyright]
|
||||||
typeCheckingMode = "basic"
|
typeCheckingMode = "basic"
|
||||||
@@ -58,3 +50,7 @@ disable = [
|
|||||||
"R0913", # (too-many-arguments)
|
"R0913", # (too-many-arguments)
|
||||||
"W0105", # (pointless-string-statement)
|
"W0105", # (pointless-string-statement)
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[build-system]
|
||||||
|
requires = ["poetry-core"]
|
||||||
|
build-backend = "poetry.core.masonry.api"
|
||||||
|
|||||||
Reference in New Issue
Block a user