-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
43 lines (41 loc) · 1.59 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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='kafka-connect-dependency',
version='0.1.1',
license='MIT',
url='https://github.com/bkatwal/distributed-kafka-consumer-python',
author='Bikas Katwal',
author_email='[email protected]',
description='Library to run distributed Kafka Consumers using Ray',
long_description='This library need to be installed in ray nodes. So, ray head and worker '
'nodes can find and pickle/unpickle Kafka Consumer modules.',
keywords=['ray', 'kafka', 'consumer'],
long_description_content_type="text/markdown",
py_modules=['src.exceptions.usi_exceptions',
'src.kafka_core.consumer_manager',
'src.kafka_core.kafka_stream_writer',
'src.kafka_core.kafka_util',
'src.kafka_core.ser_des_util',
'src.kafka_core.sink_task',
'src.model.worker_dto',
'src.stream_writers.stream_writer',
'src.stream_writers.console_stream_writer',
'src.transformers.transformer',
'src.transformers.test_transformer',
'src.utility.common_util',
'src.utility.config_manager',
'src.utility.logging_util'],
python_requires='>=3',
install_requires=[
'fastapi==0.65.1',
'uvicorn==0.13.4',
'cachetools~=4.2.2',
'starlette~=0.14.2',
'pydantic~=1.7.4',
'ratelimit==2.2.1',
'ray==1.8.0',
'kafka-python==2.0.2'
]
)