-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (35 loc) · 1.29 KB
/
Copy pathsetup.py
File metadata and controls
41 lines (35 loc) · 1.29 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
#!/usr/bin/env python
from os.path import join, dirname, abspath
from setuptools import setup
import sys
CURDIR = dirname(abspath(__file__))
with open(join(CURDIR, 'requirements.txt')) as f:
REQUIREMENTS = f.read().splitlines()
filename = join(dirname(__file__), 'KafkaLibrary', 'version.py')
if sys.version_info.major >= 3:
exec(compile(open(filename).read(), filename, 'exec'))
else:
execfile(filename)
DESCRIPTION = """
Kafka support for Robot Framework.
"""[1:-1]
setup(name = 'robotframework-kafkalibrary',
version = VERSION,
description = 'Kafka library for Robot Framework',
long_description = DESCRIPTION,
author = 'Marcin Mierzejewski',
author_email = '<mmierz@gmail.com>',
url = 'https://github.com/s4int/robotframework-KafkaLibrary',
license = 'Apache License 2.0',
keywords = 'robotframework testing kafka',
platforms = 'any',
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Testing"
],
install_requires = REQUIREMENTS,
packages = ['KafkaLibrary'],
)