mirror of
https://github.com/iluvcapra/ptulsconv.git
synced 2025-12-31 17:00:46 +00:00
43 lines
1.4 KiB
Python
43 lines
1.4 KiB
Python
from setuptools import setup
|
|
|
|
from ptulsconv import __author__, __license__, __version__
|
|
|
|
with open("README.md", "r") as fh:
|
|
long_description = fh.read()
|
|
|
|
setup(name='ptulsconv',
|
|
version=__version__,
|
|
author=__author__,
|
|
description='Parse and convert Pro Tools text exports',
|
|
long_description_content_type="text/markdown",
|
|
long_description=long_description,
|
|
license=__license__,
|
|
url='https://github.com/iluvcapra/ptulsconv',
|
|
project_urls={
|
|
'Source':
|
|
'https://github.com/iluvcapra/ptulsconv',
|
|
'Issues':
|
|
'https://github.com/iluvcapra/ptulsconv/issues',
|
|
},
|
|
classifiers=[
|
|
'License :: OSI Approved :: MIT License',
|
|
'Topic :: Multimedia',
|
|
'Topic :: Multimedia :: Sound/Audio',
|
|
"Programming Language :: Python :: 3.7",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Development Status :: 4 - Beta",
|
|
"Topic :: Text Processing :: Filters"],
|
|
packages=['ptulsconv'],
|
|
keywords='text-processing parsers film tv editing editorial',
|
|
install_requires=['parsimonious', 'tqdm', 'reportlab'],
|
|
package_data={
|
|
"ptulsconv": ["xslt/*.xsl"]
|
|
},
|
|
entry_points={
|
|
'console_scripts': [
|
|
'ptulsconv = ptulsconv.__main__:main'
|
|
]
|
|
}
|
|
)
|