From 2378b72add64468ef8e1756d0940accf493cb4f8 Mon Sep 17 00:00:00 2001 From: Jan Dittberner Date: Wed, 31 Oct 2007 20:36:31 +0000 Subject: [PATCH] setup update addresses #2 * switch to setuptools * *.egg-info and dist added to svn:ignore git-svn-id: file:///var/www/wwwusers/usr01/svn/pyalchemybiz/trunk@3 389c73d4-bf09-4d3d-a15e-f94a37d0667a --- setup.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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' )