-
-
Notifications
You must be signed in to change notification settings - Fork 24
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 #34 from hpsbranco/master
Fixes #33
- Loading branch information
Showing
11 changed files
with
76 additions
and
58 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
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,7 +1,10 @@ | ||
language: python | ||
python: | ||
- 2.7 | ||
- 3.3 | ||
script: python setup.py test | ||
- 3.8 | ||
- 3.9 | ||
- 3.10 | ||
- 3.11 | ||
- 3.12 | ||
script: python -m unittest | ||
notifications: | ||
irc: "irc.freenode.org#enzyme" |
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 +1,8 @@ | ||
include LICENSE HISTORY.rst enzyme/parsers/ebml/specs/matroska.xml enzyme/tests/parsers/ebml/test1.mkv.yml | ||
include LICENSE | ||
include HISTORY.rst | ||
include tox.ini | ||
include enzyme/parsers/ebml/specs/matroska.xml | ||
include enzyme/tests/parsers/ebml/test1.mkv.yml | ||
|
||
graft docs | ||
|
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "enzyme" | ||
description = "Python video metadata parser" | ||
requires-python = ">=3.8" | ||
license = { file = "LICENSE" } | ||
keywords = ["parser", "video", "metadata", "mkv"] | ||
authors = [{ name = "Antoine Bertin", email = "[email protected]" }] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: Apache Software License", | ||
"Operating System :: OS Independent", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: 3.11", | ||
"Programming Language :: Python :: 3.12", | ||
"Topic :: Multimedia :: Video", | ||
"Topic :: Software Development :: Libraries :: Python Modules", | ||
] | ||
dynamic = ["version", "readme"] | ||
dependencies = [ | ||
"importlib_resources>=4.6; python_version=='3.8'" | ||
] | ||
|
||
[project.optional-dependencies] | ||
docs = ["sphinx"] | ||
test = ["PyYAML", "requests"] | ||
dev = ["tox"] | ||
|
||
[project.urls] | ||
homepage = "https://github.com/Diaoul/enzyme" | ||
repository = "https://github.com/Diaoul/enzyme" | ||
documentation = "https://enzyme.readthedocs.io" | ||
|
||
[tool.setuptools.dynamic] | ||
version = { attr = "enzyme.__version__" } | ||
readme = { file = ["README.rst", "HISTORY.rst"] } |
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[tox] | ||
envlist = py{38,39,310,311,312} | ||
|
||
[testenv] | ||
extras = test | ||
commands = python -m unittest |