summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dist/ebus-0.2-py2.5.eggbin9983 -> 9856 bytes
-rw-r--r--setup.py8
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
index c87077c..4e2d848 100644
--- a/dist/ebus-0.2-py2.5.egg
+++ b/dist/ebus-0.2-py2.5.egg
Binary files differ
diff --git a/setup.py b/setup.py
index ced377b..e675b84 100644
--- a/setup.py
+++ b/setup.py
@@ -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",