forked from schlitzered/pyredis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (31 loc) · 744 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
27
28
29
30
31
32
33
34
from setuptools import setup
setup(
name='python_redis',
version='0.0.6',
description='Redis Client',
long_description="""
Redis Client implementation for Python 3.
Copyright (c) 2016, Stephan Schultchen.
License: MIT (see LICENSE for details)
""",
packages=['pyredis'],
url='https://github.com/schlitzered/pyredis',
license='MIT',
author='schlitzer',
author_email='stephan.schultchen@gmail.com',
test_suite='test',
platforms='posix',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3'
],
setup_requires=[
'crc16'
],
install_requires=[
'crc16'
],
keywords=[
'redis'
]
)