# -*- coding: utf-8 -*- # :Progetto: GamDB # :Creato: ven 26 feb 2010 14:55:25 CET # :Autore: Lele Gaifax # :Licenza: GNU General Public License version 3 or later # from setuptools import setup setup( name='gam.model', version="1.1dev", description='Modello SQLAlchemy del database GAM', author='Lele Gaifax', author_email='lele@artiemestieri.tn.it', url='http://progetti.arstecnica.it/gam/', install_requires=[ "distribute", "sqlalchemy>=0.6.5", "psycopg2", ], packages=['gam.model'], namespace_packages=['gam'], zip_safe=False, )