-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
53 lines (42 loc) · 1.31 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
51
52
53
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
from setuptools import setup
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
def readlines(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).readlines()
version = read('VERSION')
requirements = readlines('requirements.txt')
test_requirements = [
'tox',
'coverage',
'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-redislibrary',
version=version,
description="robotframework-redislibrary is a Robot Framework test library for manipulating in-memory data which store in Redis",
author="Traitanit Huangsri",
author_email='[email protected]',
url='https://github.com/nottyo/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
)