~verterok/+junk/tritcask-trunk

1 by Guillermo Gonzalez
initial import
1
#!/usr/bin/env python
2
#
3
# Author: Guillermo Gonzalez <guillermo.gonzalez@canonical.com>
4
#
5
# Copyright 2011 Canonical Ltd.
6
#
7
# This program is free software: you can redistribute it and/or modify it
8
# under the terms of the GNU General Public License version 3, as published
9
# by the Free Software Foundation.
10
#
11
# This program is distributed in the hope that it will be useful, but
12
# WITHOUT ANY WARRANTY; without even the implied warranties of
13
# MERCHANTABILITY, SATISFACTORY QUALITY, or FITNESS FOR A PARTICULAR
14
# PURPOSE.  See the GNU General Public License for more details.
15
#
16
# You should have received a copy of the GNU General Public License along
17
# with this program.  If not, see <http://www.gnu.org/licenses/>.
18
from distutils.core import setup
19
20
setup(name='Tritcask',
21
      version='0.1',
22
      description='Append only (type,key)/value store based on bitcask paper.',
23
      author='Guillermo Gonzalez',
24
      author_email='guillermo.gonzalez@canonical.com',
25
      url='',
26
      license='GNU GPL v3',
27
      packages=['.'],
28
      provides=['tritcask'],
29
      classifiers=[
30
          'Development Status :: 5 - Production/Stable',
31
          'Intended Audience :: Developers',
32
          'License :: OSI Approved :: GNU General Public License (GPL)',
33
          'Operating System :: OS Independent',
34
          'Operating System :: POSIX',
35
          'Programming Language :: Python',
36
          'Topic :: Database',
37
      ],
38
     )