forked from brainsik/json-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
33 lines (31 loc) · 1.14 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
# encoding: utf-8
import setuptools
import json_store
setuptools.setup(
name='json-store',
version=json_store.__version__,
packages=['json_store'],
entry_points={
'console_scripts': [
'shelve2json=json_store.shelve2json:main',
],
},
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',
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',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: Implementation :: PyPy',
],
)