From b80339267a679322907258923f1a1546df227e98 Mon Sep 17 00:00:00 2001 From: Jamie Hardt Date: Thu, 3 Jan 2019 19:40:03 -0800 Subject: [PATCH] Version 1.0 --- pycmx/__init__.py | 10 +++++----- setup.py | 4 ++-- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pycmx/__init__.py b/pycmx/__init__.py index 8a43bb4..6e06917 100644 --- a/pycmx/__init__.py +++ b/pycmx/__init__.py @@ -1,17 +1,17 @@ # -*- coding: utf-8 -*- """ -pycmx is a module for parsing CMX 3600-style EDLs. For more information and +pycmx is a module for parsing CMX 3600-style EDLs. For more information and examples see README.md -This module (c) 2018 Jamie Hardt. For more information on your rights to -copy and reuse this software, refer to the LICENSE file included with the +This module (c) 2018 Jamie Hardt. For more information on your rights to +copy and reuse this software, refer to the LICENSE file included with the distribution. """ -__version__ = '0.9' +__version__ = '1.0' __author__ = 'Jamie Hardt' -from .parse_cmx_events import parse_cmx3600 +from .parse_cmx_events import parse_cmx3600 from .transition import Transition from .event import Event from .edit import Edit diff --git a/setup.py b/setup.py index fb21321..928dca6 100644 --- a/setup.py +++ b/setup.py @@ -4,14 +4,14 @@ with open("README.md", "r") as fh: long_description = fh.read() setup(name='pycmx', - version='0.9', + version='1.0', author='Jamie Hardt', author_email='jamiehardt@me.com', description='CMX 3600 Edit Decision List Parser', long_description_content_type="text/markdown", long_description=long_description, url='https://github.com/iluvcapra/pycmx', - classifiers=['Development Status :: 4 - Beta', + classifiers=['Development Status :: 5 - Production/Stable', 'License :: OSI Approved :: MIT License', 'Topic :: Multimedia', 'Topic :: Multimedia :: Video',