File: setup.py

package info (click to toggle)
python-buzhug 1.8-2
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 144 kB
  • ctags: 197
  • sloc: python: 1,653; makefile: 32
file content (13 lines) | stat: -rw-r--r-- 323 bytes parent folder | download | duplicates (2)
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.8',
      description='Buzhug, a pure-Python database',
      author='Pierre Quentel',
      author_email='quentel.pierre@wanadoo.fr',
      url='http://buzhug.sourceforge.net/',
      packages = ['buzhug']
     )