pyalchemybiz/setup.py

20 lines
525 B
Python
Raw Normal View History

#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Author: Jan Dittberner <jan@dittberner.info>
# Version: $Id$
#
# This file is part of pyalchemybiz
#
from setuptools import setup
setup(name='pyalchemybiz',
description='Python SQLAlchemy Business',
version='0.1dev',
author='Jan Dittberner',
author_email='jan@dittberner.info',
url='http://www.dittberner.info/projects/pyalchemybiz/',
packages=['pyalchemybiz'],
install_requires=['sqlalchemy >= 0.3.10'],
license='GPL'
)