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'], + )