diff options
-rw-r--r-- | dist/ebus-0.2-py2.5.egg | bin | 9983 -> 9856 bytes | |||
-rw-r--r-- | setup.py | 8 |
2 files changed, 4 insertions, 4 deletions
diff --git a/dist/ebus-0.2-py2.5.egg b/dist/ebus-0.2-py2.5.egg Binary files differindex c87077c..4e2d848 100644 --- a/dist/ebus-0.2-py2.5.egg +++ b/dist/ebus-0.2-py2.5.egg @@ -1,6 +1,6 @@ #!/usr/bin/env python -from setuptools import setup +from setuptools import setup, find_packages setup( name='ebus', @@ -9,9 +9,9 @@ setup( author='xapek.org', author_email='ebus@xapek.org', url='http://xapek.org', - packages=['ebus'], - package_data = {'doc':['*.txt'], 'xml':['ebus/*.xml']}, - install_requires=[], + packages=find_packages(), + package_data={'doc':['*.txt'], 'xml':['*.xml']}, + include_package_data = True, long_description="""ebus library""", classifiers=[ "Programming Language :: Python", |