-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
32 lines (30 loc) · 1.04 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
from setuptools import setup
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='kashpy',
version='0.0.12',
description='A Kafka Shell based on Python',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/xdgrulez/kash.py',
author='Ralph M. Debusmann',
author_email='matthias.debusmann@gmail.com',
license='Apache License 2.0',
packages=['kashpy'],
install_requires=['confluent_kafka>=2.0.2',
'fastavro',
'grpcio-tools',
'jsonschema',
'piny',
'requests'
],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)