From 8863d6e9c7b96698f773c958ba240a31c1f2f648 Mon Sep 17 00:00:00 2001 From: Jan Dittberner Date: Wed, 31 Oct 2007 19:41:48 +0000 Subject: [PATCH] * 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 --- pyalchemybiz/__init__.py | 8 ++++++++ setup.py | 17 +++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 pyalchemybiz/__init__.py create mode 100755 setup.py diff --git a/pyalchemybiz/__init__.py b/pyalchemybiz/__init__.py new file mode 100644 index 0000000..8918ae1 --- /dev/null +++ b/pyalchemybiz/__init__.py @@ -0,0 +1,8 @@ +# -*- coding: utf-8 -*- +# +# Package pyalchemybiz +# +# Author: Jan Dittberner +# Version: $Id$ +# +# This file is part of pyalchemybiz diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..33fb510 --- /dev/null +++ b/setup.py @@ -0,0 +1,17 @@ +#!/usr/bin/env python +# -*- coding: utf-8 -*- +# +# Author: Jan Dittberner +# 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'], + )