#!/usr/bin/env python
from distutils.core import setup
setup(name="buildes",
version="0.4.2-alpha",
description=("Buildes - a designer's program for describing parts " +
"of the building"),
author="Kene Meniru",
author_email="Kene.Meniru@illom.org",
url="http://sourceforge.net/projects/buildes",
license="GNU General Public License (GPL)",
packages=["buildes",
"buildes.bdform",
"buildes.bdgroup",
"buildes.bdlevel",
"buildes.bdmark",
"buildes.bdresource",
"buildes.bdsite",
"buildes.bdspace",
"buildes.bdtool",
"buildes.test",
],
scripts=["bin/bdui.py"],
long_description="""
Buildes is an integrated development environment that assists the user in
creating building information. It reads a text (session) file from which it
compiles the information. It then allows the user to browse, analyze and
export the resulting building knowledge. The compilation system is written in
pure Python. The building components created are rendered in PythonOCC. The
GUI is written using PyQt.
""",
classifiers=['Development Status :: 3 - Alpha',
'Environment :: Console',
'Environment :: Win32 (MS Windows)',
'Environment :: X11 Applications',
'Intended Audience :: Architects',
'Intended Audience :: Building Engineering',
'Intended Audience :: Education',
'Intended Audience :: Science/Research',
'Intended Audience :: End Users/Desktop',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
'Topic :: Office/Business',
],
)