Some cleanup/init/setup.py

This commit is contained in:
Jamie Hardt
2019-10-09 11:16:31 -07:00
parent 6f0484552f
commit 186fe242d0
4 changed files with 12 additions and 7 deletions

View File

@@ -1,15 +1,17 @@
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='0.1',
author='Jamie Hardt',
author_email='jamiehardt@me.com',
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':