mirror of
https://github.com/iluvcapra/pycmx.git
synced 2025-12-31 08:50:54 +00:00
Compare commits
13 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
c56d2066ad | ||
|
|
8b49a788ae | ||
|
|
b31450f03d | ||
|
|
5d14c3177a | ||
|
|
08dea6031d | ||
|
|
d23fa33558 | ||
|
|
fcc4732d1a | ||
|
|
47c1ad96f0 | ||
|
|
804f649570 | ||
|
|
58483198c3 | ||
|
|
aa01e9ad2d | ||
|
|
464052f510 | ||
|
|
3ba28a61dd |
13
.travis.yml
13
.travis.yml
@@ -1,8 +1,17 @@
|
|||||||
language: python
|
language: python
|
||||||
python:
|
python:
|
||||||
|
- "3.7"
|
||||||
- "3.6"
|
- "3.6"
|
||||||
- "3.5"
|
- "3.5"
|
||||||
|
- "2.7"
|
||||||
script:
|
script:
|
||||||
- "python3 setup.py test"
|
- "python setup.py test"
|
||||||
|
- "py.test tests/ -v --cov pycmx --cov-report term-missing"
|
||||||
install:
|
install:
|
||||||
- "pip3 install setuptools"
|
- "pip install setuptools"
|
||||||
|
before_install:
|
||||||
|
- "pip install coverage"
|
||||||
|
- "pip install codecov"
|
||||||
|
- "pip install pytest-cov==2.5.0"
|
||||||
|
after_success:
|
||||||
|
- "codecov"
|
||||||
|
|||||||
@@ -1,4 +1,5 @@
|
|||||||
[](https://travis-ci.com/iluvcapra/pycmx)
|
[](https://travis-ci.com/iluvcapra/pycmx)
|
||||||
|
[](https://codecov.io/gh/iluvcapra/pycmx)
|
||||||
[](https://pycmx.readthedocs.io/en/latest/?badge=latest)   [](https://pypi.org/project/pycmx/) 
|
[](https://pycmx.readthedocs.io/en/latest/?badge=latest)   [](https://pypi.org/project/pycmx/) 
|
||||||
|
|
||||||
|
|
||||||
@@ -82,11 +83,3 @@ Audio channel 7 is present
|
|||||||
>>> events[2].edits[0].channels.video
|
>>> events[2].edits[0].channels.video
|
||||||
False
|
False
|
||||||
```
|
```
|
||||||
|
|
||||||
## Should I Use This?
|
|
||||||
|
|
||||||
At this time, this is (at best) beta software. I feel like the interface is
|
|
||||||
about where where I'd like it to be but more testing is required.
|
|
||||||
|
|
||||||
Contributions are welcome and will make this module production-ready all the
|
|
||||||
faster! Please reach out or file a ticket!
|
|
||||||
|
|||||||
7
setup.py
7
setup.py
@@ -4,7 +4,7 @@ with open("README.md", "r") as fh:
|
|||||||
long_description = fh.read()
|
long_description = fh.read()
|
||||||
|
|
||||||
setup(name='pycmx',
|
setup(name='pycmx',
|
||||||
version='1.0',
|
version='1.0.1',
|
||||||
author='Jamie Hardt',
|
author='Jamie Hardt',
|
||||||
author_email='jamiehardt@me.com',
|
author_email='jamiehardt@me.com',
|
||||||
description='CMX 3600 Edit Decision List Parser',
|
description='CMX 3600 Edit Decision List Parser',
|
||||||
@@ -16,8 +16,9 @@ setup(name='pycmx',
|
|||||||
'Topic :: Multimedia',
|
'Topic :: Multimedia',
|
||||||
'Topic :: Multimedia :: Video',
|
'Topic :: Multimedia :: Video',
|
||||||
'Topic :: Text Processing',
|
'Topic :: Text Processing',
|
||||||
'Programming Language :: Python :: 3 :: Only',
|
'Programming Language :: Python :: 2.7',
|
||||||
'Programming Language :: Python :: 3.5',
|
'Programming Language :: Python :: 3.5',
|
||||||
'Programming Language :: Python :: 3.6'
|
'Programming Language :: Python :: 3.6',
|
||||||
|
'Programming Language :: Python :: 3.7',
|
||||||
],
|
],
|
||||||
packages=['pycmx'])
|
packages=['pycmx'])
|
||||||
|
|||||||
Reference in New Issue
Block a user