-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
executable file
·48 lines (40 loc) · 1.8 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
#!/usr/bin/env python
import sys
from setuptools import setup
if __name__ == '__main__':
summary = 'A super-fast ORM backed by Redis, supporting models and indexes with O(1) searches, and support for storing native/complex types and objects'
try:
with open('README.rst', 'rt') as f:
long_description = f.read()
except Exception as e:
sys.stderr.write('Error reading description: %s\n' %(str(e),))
long_description = summary
setup(name='indexedredis',
version='6.0.3',
packages=['IndexedRedis', 'IndexedRedis.fields'],
install_requires=['redis', 'QueryableList'],
requires=['redis', 'QueryableList'],
provides=['indexedredis'],
keywords=['redis', 'IndexedRedis', 'SQL', 'nosql', 'orm', 'fast', 'python', 'filter', 'index', 'model'],
url='https://github.com/kata198/indexedredis',
long_description=long_description,
author='Tim Savannah',
author_email='[email protected]',
maintainer='Tim Savannah',
maintainer_email='[email protected]',
license='LGPLv2',
description=summary,
classifiers=['Development Status :: 5 - Production/Stable',
'Programming Language :: Python',
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Topic :: Database :: Front-Ends',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)
#vim: set ts=4 sw=4 expandtab