forked from brainsik/json-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
24 lines (23 loc) · 1.03 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
# encoding: utf-8
from distutils.core import setup
setup(
name='json-store',
version='2.1',
packages=['json_store'],
scripts=['bin/shelve2json.py'],
description="A shelve-like store using JSON serialization.",
long_description="JSON store is a simple replacement for shelve. It writes"
" JSON serialized files, accepts unicode keys, and tracks"
" whether the store has been changed since last sync.",
author='jeremy avnet',
author_email='[email protected]',
license='MIT License',
url='https://github.com/brainsik/json-store',
download_url='http://pypi.python.org/packages/source/j/json-store/json-store-2.1.tar.gz',
classifiers=['Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7']
)