forked from patx/pickledb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
58 lines (41 loc) · 1.16 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
"""
pickleDB
--------
pickleDB is lightweight, fast, and simple database based on Python's own
json module. And it's BSD licensed!
pickleDB is Fun
```````````````
::
>>> import pickledb
>>> db = pickledb.load('test.db', False)
>>> db.set('key', 'value')
>>> db.get('key')
'value'
>>> db.dump()
True
And Easy to Install
```````````````````
::
$ pip install pickledb
Links
`````
* `website <http://packages.python.org/pickleDB/>`_
* `documentation <http://packages.python.org/pickleDB/commands.html>`_
* `bitbucket repo <https://bitbucket.org/patx/pickledb>`_
"""
from distutils.core import setup
setup(name = "pickleDB",
version="0.6.2",
description="A lightweight and simple database using simplejson.",
author="Harrison Erd",
author_email="[email protected]",
license="three-clause BSD",
url="http://bitbucket.org/patx/pickledb",
long_description=__doc__,
classifiers = [
"Programming Language :: Python",
"License :: OSI Approved :: BSD License",
"Intended Audience :: Developers",
"Topic :: Database" ],
py_modules=['pickledb'],
install_requires=['simplejson'])