* 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
This commit is contained in:
Jan Dittberner 2007-10-31 19:41:48 +00:00
parent 7583729bf3
commit 8863d6e9c7
2 changed files with 25 additions and 0 deletions

8
pyalchemybiz/__init__.py Normal file
View file

@ -0,0 +1,8 @@
# -*- coding: utf-8 -*-
#
# Package pyalchemybiz
#
# Author: Jan Dittberner <jan@dittberner.info>
# Version: $Id$
#
# This file is part of pyalchemybiz

17
setup.py Executable file
View file

@ -0,0 +1,17 @@
#!/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'],
)