-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
30 lines (27 loc) · 947 Bytes
/
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
from setuptools import setup
meta = {}
exec(open('./kafka_schema_registry/version.py').read(), meta)
meta['long_description'] = open('./README.md').read()
setup(
name='kafka-schema-registry',
version=meta['__VERSION__'],
description='Kafka and schema registry integration',
long_description=meta['long_description'],
long_description_content_type='text/markdown',
keywords='kafka schema-registry',
author='FlixTech',
author_email="[email protected]",
url='https://github.com/flix-tech/kafka-schema-registry',
project_urls={
"Changelog": "https://github.com/flix-tech/kafka-schema-registry/blob/master/CHANGELOG.md", # noqa
"Source": 'https://github.com/flix-tech/kafka-schema-registry',
},
python_requires='>=3.9',
install_requires=[
'fastavro',
'kafka-python-ng',
'requests',
],
packages=['kafka_schema_registry'],
license='MIT',
)