forked from piskvorky/sqlitedict
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·50 lines (37 loc) · 1.37 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
#
# Copyright (C) 2011 Radim Rehurek <[email protected]>
"""
Run with:
sudo python ./setup.py install
"""
import os
import sys
from distutils.core import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = 'sqlitedict',
version = '1.0.9',
description = 'Persistent dict in Python, backed up by sqlite3 and pickle, multithread-safe.',
long_description = read('README.rst'),
py_modules = ['sqlitedict'],
# there is a bug in python2.5, preventing distutils from using any non-ascii characters :( http://bugs.python.org/issue2562
author = 'Radim Rehurek', # u'Radim Řehůřek', # <- should really be this...
author_email = '[email protected]',
url = 'https://github.com/piskvorky/sqlitedict',
download_url = 'http://pypi.python.org/pypi/sqlitedict',
keywords = 'sqlite, persistent dict, multithreaded',
license = 'public domain',
platforms = 'any',
classifiers = [ # from http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: Public Domain',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.5',
'Topic :: Database :: Front-Ends',
],
)