blob: 4f07fcffca59ed894643ded3365691063cf93278 [file] [log] [blame]
Martin Cosynsf88ed6e2020-12-02 10:30:10 +01001# Copyright 2020 ADTRAN, Inc.
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13from setuptools import setup, find_packages
14
15NAME = 'kafka_robot'
16with open('VERSION') as ff:
17 VERSION = ff.read().strip()
18with open('VERSION') as ff:
19 README = ff.read()
20with open('VERSION') as ff:
21 LICENSE = ff.read()
22
23setup(
24 name=NAME,
25 version=VERSION,
26 description='Package for recieving messages from Kafka in Robot Framework.',
27 long_description=README,
28 long_description_content_type="text/markdown",
29 license=LICENSE,
30 classifiers=[
31 "Programming Language :: Python :: 3",
32 "Operating System :: OS Independent",
33 ],
34 install_requires=[
35 'six',
36 'robotframework>=3.1.2',
37 'kafka-python>=2.0.1'
38 ],
39 python_requires='>=3.6',
40 packages=find_packages(exclude='tests'),
41 data_files=[('', ['LICENSE'])]
42)