diff --git a/pyschedules.egg-info/PKG-INFO b/pyschedules.egg-info/PKG-INFO index 99d35df..1438968 100644 --- a/pyschedules.egg-info/PKG-INFO +++ b/pyschedules.egg-info/PKG-INFO @@ -1,6 +1,6 @@ Metadata-Version: 1.1 Name: pyschedules -Version: 0.1.3 +Version: 0.1.10 Summary: Interface to Schedules Direct. Home-page: https://github.com/dsoprea/PySchedules Author: Dustin Oprea diff --git a/pyschedules.egg-info/SOURCES.txt b/pyschedules.egg-info/SOURCES.txt index d797d4d..2554065 100644 --- a/pyschedules.egg-info/SOURCES.txt +++ b/pyschedules.egg-info/SOURCES.txt @@ -12,4 +12,7 @@ pyschedules.egg-info/top_level.txt pyschedules.egg-info/zip-safe pyschedules/interfaces/__init__.py pyschedules/interfaces/ientity_trigger.py -pyschedules/interfaces/iprogress_trigger.py \ No newline at end of file +pyschedules/interfaces/iprogress_trigger.py +pyschedules/tools/__init__.py +pyschedules/tools/qam.py +pyschedules/tools/read.py \ No newline at end of file diff --git a/pyschedules.egg-info/requires.txt b/pyschedules.egg-info/requires.txt index 0dfb99e..7957f3c 100644 --- a/pyschedules.egg-info/requires.txt +++ b/pyschedules.egg-info/requires.txt @@ -1,5 +1 @@ -xml -mx -urllib2 -zlib parsedatetime \ No newline at end of file diff --git a/pyschedules.egg-info/top_level.txt b/pyschedules.egg-info/top_level.txt index 709a1d5..112f954 100644 --- a/pyschedules.egg-info/top_level.txt +++ b/pyschedules.egg-info/top_level.txt @@ -1 +1,2 @@ pyschedules +pyschedules/tools diff --git a/setup.py b/setup.py index 9de8733..54a16bd 100644 --- a/setup.py +++ b/setup.py @@ -1,6 +1,6 @@ from setuptools import setup, find_packages -version = '0.1.3' +version = '0.1.10' setup(name='pyschedules', version=version, @@ -20,14 +20,10 @@ author_email='myselfasunder@gmail.com', url='https://github.com/dsoprea/PySchedules', license='LGPL', - packages=find_packages(exclude=['ez_setup', 'examples', 'tests']), + packages=['pyschedules/tools'] + find_packages(exclude=['ez_setup', 'examples', 'tests']), include_package_data=True, zip_safe=True, install_requires=[ - 'xml', - 'mx', - 'urllib2', - 'zlib', 'parsedatetime', ], entry_points="""