-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (41 loc) · 1.16 KB
/
setup.py
File metadata and controls
47 lines (41 loc) · 1.16 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
from RedisLibrary.version import VERSION
requirements = [
'tox',
'coverage',
'robotframework==3.0.4',
'redis==2.10.5',
'deco'
]
test_requirements = [
'fakeredis==0.8.2'
]
CLASSIFIERS = """
Development Status :: 5 - Production/Stable
License :: Public Domain
Operating System :: OS Independent
Programming Language :: Python
Topic :: Software Development :: Testing
"""[1:-1]
setup(
name='robotframework-redislibrary2',
version=VERSION,
description="robotframework-redislibrary is a Robot Framework test library for manipulating in-memory data which store in Redis",
author="Donghaopeng",
author_email='1173619682@qq.com',
url='https://github.com/Donghaopeng/robotframework-redislibrary.git',
packages=[
'RedisLibrary'
],
package_dir={'robotframework-redislibrary':
'RedisLibrary'},
include_package_data=True,
install_requires=requirements,
zip_safe=False,
keywords='robotframework redislibrary redis',
classifiers=CLASSIFIERS.splitlines(),
test_suite='tests',
tests_require=test_requirements
)