Merge branch 'master' of git@github.com:bickfordb/waffle
[waffle.git] / setup.py
blob4c946e0b70605eb93f82555ca5236d2b7c531e09
1 from distutils.core import setup
2 from distutils.command.install_data import install_data
3 from distutils.command.install import INSTALL_SCHEMES
4 import os
5 import sys
7 setup(
8 name="waffle",
9 version='0.1',
10 url='http://github.com/bickfordb/waffle/',
11 author='Brandon Bickford',
12 author_email='bickfordb@gmail.com',
13 description='A library to store schema-less data in relational databases',
14 packages=['waffle'],
15 classifiers = [
16 'Development Status :: 3 - Alpha',
17 'Intended Audience :: Developers',
18 'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
19 'Programming Language :: Python',
20 'Topic :: Database',
21 'Topic :: Software Development :: Libraries :: Python Modules',
22 ])