forked from robooo/robotframework-ConfluentKafkaLibrary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 1.36 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
#!/usr/bin/env python
from os.path import join, dirname
from setuptools import setup
filename=join(dirname(__file__), 'src', 'ConfluentKafkaLibrary', 'version.py')
exec(compile(open(filename).read(),filename, 'exec'))
DESCRIPTION = """
Confluent Kafka wrapped in Robot Framework.
"""[1:-1]
setup(name = 'robotframework-confluentkafkalibrary',
version = VERSION,
description = 'Confluent Kafka library for Robot Framework',
long_description = DESCRIPTION,
author = 'Robert Karasek',
author_email = '<robo.karasek@gmail.com>',
url = 'https://github.com/robooo/robotframework-ConfluentKafkaLibrary',
license = 'Apache License 2.0',
keywords = 'robotframework confluent kafka',
platforms = 'any',
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Testing"
],
install_requires = [
'robotframework >= 3.2.1',
'confluent-kafka == 2.0.2',
'requests >= 2.25.1',
'avro-python3 >= 1.10.1',
'fastavro >= 1.3.2',
'jsonschema >= 3.2.0',
'protobuf >= 4.22.0'
],
package_dir = {'' : 'src'},
packages = ['ConfluentKafkaLibrary'],
)