diff --git a/setup.py b/setup.py index 33fb510..57f6141 100755 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ # # This file is part of pyalchemybiz # -from distutils.core import setup +from setuptools import setup setup(name='pyalchemybiz', description='Python SQLAlchemy Business', version='0.1dev', @@ -14,4 +14,6 @@ setup(name='pyalchemybiz', author_email='jan@dittberner.info', url='http://www.dittberner.info/projects/pyalchemybiz/', packages=['pyalchemybiz'], + install_requires=['sqlalchemy >= 0.3.10'], + license='GPL' )