mirror of
https://github.com/iluvcapra/ptulsconv.git
synced 2025-12-31 17:00:46 +00:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
3e6e2b5776 | ||
|
|
b9a2db2037 | ||
|
|
4943277bed | ||
|
|
83ca77b305 | ||
|
|
2995840f9f |
8
.travis.yml
Normal file
8
.travis.yml
Normal file
@@ -0,0 +1,8 @@
|
||||
language: python
|
||||
python:
|
||||
- "3.7"
|
||||
script:
|
||||
- "python -m unittest discover tests"
|
||||
install:
|
||||
- "pip install setuptools"
|
||||
- "pip install parsimonious tqdm"
|
||||
@@ -1,3 +1,5 @@
|
||||
[](https://travis-ci.com/iluvcapra/ptulsconv)
|
||||
  [](https://pypi.org/project/ptulsconv/) 
|
||||
# ptulsconv
|
||||
Read Pro Tools text exports and generate XML, JSON, reports
|
||||
|
||||
|
||||
@@ -2,6 +2,6 @@ from .ptuls_grammar import protools_text_export_grammar
|
||||
from .ptuls_parser_visitor import DictionaryParserVisitor
|
||||
from .transformations import TimecodeInterpreter
|
||||
|
||||
__version__ = '0.0.1'
|
||||
__version__ = '0.0.2'
|
||||
__author__ = 'Jamie Hardt'
|
||||
__license__ = 'MIT'
|
||||
2
setup.py
2
setup.py
@@ -29,7 +29,7 @@ setup(name='ptulsconv',
|
||||
"Topic :: Text Processing :: Markup :: XML"],
|
||||
packages=['ptulsconv'],
|
||||
keywords='text-processing parsers film tv editing editorial',
|
||||
install_requires=['parsimonious'],
|
||||
install_requires=['parsimonious','tqdm'],
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'ptulsconv = ptulsconv.__main__:main'
|
||||
|
||||
Reference in New Issue
Block a user