Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/buzhug_setup.py
blob: ee4cb92151b625e5e4cc7328bf33ec7cfb33c50f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env python

from distutils.core import setup

setup(name='buzhug',
      version='1.6',
      description='Buzhug, a pure-Python database',
      author='Pierre Quentel',
      author_email='pierre.quentel@gmail.com',
      url='http://buzhug.sourceforge.net/',
      packages = ['buzhug']
     )