Skip to content

Commit

Permalink
Includes tools/ in build. Removed native, unfindable dependences from…
Browse files Browse the repository at this point in the history
… build.
  • Loading branch information
dsoprea committed Jan 9, 2013
1 parent 1f82247 commit 1e2f968
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 12 deletions.
2 changes: 1 addition & 1 deletion 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
Expand Down
5 changes: 4 additions & 1 deletion pyschedules.egg-info/SOURCES.txt
Expand Up @@ -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
pyschedules/interfaces/iprogress_trigger.py
pyschedules/tools/__init__.py
pyschedules/tools/qam.py
pyschedules/tools/read.py
4 changes: 0 additions & 4 deletions pyschedules.egg-info/requires.txt
@@ -1,5 +1 @@
xml
mx
urllib2
zlib
parsedatetime
1 change: 1 addition & 0 deletions pyschedules.egg-info/top_level.txt
@@ -1 +1,2 @@
pyschedules
pyschedules/tools
8 changes: 2 additions & 6 deletions 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,
Expand All @@ -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="""
Expand Down

0 comments on commit 1e2f968

Please sign in to comment.