pyalchemybiz/setup.py
Jan Dittberner 8863d6e9c7 * created initial directory structure
* created initial distutils setup script
 * addresses #2


git-svn-id: file:///var/www/wwwusers/usr01/svn/pyalchemybiz/trunk@2 389c73d4-bf09-4d3d-a15e-f94a37d0667a
2007-10-31 19:41:48 +00:00

17 lines
460 B
Python
Executable file

#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Author: Jan Dittberner <jan@dittberner.info>
# Version: $Id$
#
# This file is part of pyalchemybiz
#
from distutils.core 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'],
)