-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
26 lines (24 loc) · 814 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
setup(
name='rediset',
version='0.12.0',
description='Composable, cacheable, lazy trees of Redis set operations',
author='Jamie Matthews',
author_email='[email protected]',
url='https://github.com/j4mie/rediset',
license = 'Public Domain',
packages=find_packages(),
install_requires=['redis'],
classifiers = [
'Programming Language :: Python',
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: Public Domain',
'Operating System :: MacOS :: MacOS X',
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Database",
"Topic :: Database :: Front-Ends",
],
)