Added license and updated setup.py

This commit is contained in:
Jamie Hardt
2018-11-29 14:23:44 -08:00
parent 3a06e08f7a
commit 246851048e
3 changed files with 28 additions and 5 deletions

View File

@@ -1,11 +1,14 @@
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(name='pycmx',
version='0.1',
description='CMX3600 Edit Decision List Parser',
url='https://github.com/iluvcapra/pycmx/',
author='Jamie Hardt',
author_email='jamiehardt@me.com',
license='MIT',
packages=['pycmx'],
zip_safe=False)
description='CMX3600 Edit Decision List Parser',
long_description_content_type="text/markdown",
long_description=long_description,
url='https://github.com/iluvcapra/pycmx',
packages=['pycmx'])