-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (33 loc) · 1.23 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
from distutils.core import setup
setup(
name='curio',
version='0.1',
description='A simple, serverless, schemaless file-based key-value store',
long_description="""
Curio is a simple, command-line driven key-value store, perfect for scripts or
microapps that need to store a small to fair amount of unstructured data, but don't
really need or want a fully-fledged NoSQL solution such as Cassandra, HBase, Redis, etc.
""",
author='Jon McKenzie',
author_email='[email protected]',
url='http://github.com/jcmcken/curio',
scripts=['bin/curio'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.3',
'Programming Language :: Python :: 2.4',
'Programming Language :: Python :: 2.5',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 2 :: Only',
'Topic :: Database',
'Topic :: Utilities',
],
packages=['curio'],
license='BSD',
requires=['distutils']
)