mirror of
https://github.com/iluvcapra/ptulsconv.git
synced 2025-12-31 08:50:48 +00:00
38 lines
1.3 KiB
Python
38 lines
1.3 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",
|
|
"Development Status :: 4 - Beta",
|
|
"Topic :: Text Processing :: Filters",
|
|
"Topic :: Text Processing :: Markup :: XML"],
|
|
packages=['ptulsconv'],
|
|
keywords='text-processing parsers film tv editing editorial',
|
|
install_requires=['parsimonious'],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'ptulsconv = ptulsconv.__main__:main'
|
|
]
|
|
}
|
|
) |