-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
57 lines (53 loc) · 1.82 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
54
55
56
57
"""Kafka-client compatible client for kafka-rest proxy
"""
# Always prefer setuptools over distutils
from setuptools import setup, find_packages
from os import path
here = path.abspath(path.dirname(__file__))
# Get the long description from the README file
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name='kafka-rest-client',
use_scm_version={"root": ".", "relative_to": __file__},
setup_requires=['setuptools_scm'],
description='kafka-rest client',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/digiverse/kafka-rest-client',
author='Bozo Dragojevic',
author_email='[email protected]',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
],
keywords='kafka-rest',
package_dir={'': 'src'},
packages=find_packages(where='src'),
python_requires='>=3.7, <4',
install_requires=['requests',
'marshmallow',
'docopt',
'importlib-metadata'],
extras_require={
'dev': ['check-manifest',
'flake8',
'pytest',
'tox'],
'test': ['coverage'],
},
entry_points={
'console_scripts': [
'kafka-rest-cat=kafka_rest_client.cat:main',
],
},
project_urls={
'Bug Reports': 'https://github.com/digiverse/kafka-rest-client/issues',
'Source': 'https://github.com/digiverse/kafka-rest-client/',
},
)