forked from marcosschroh/python-schema-registry-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (34 loc) · 1.14 KB
/
setup.py
File metadata and controls
40 lines (34 loc) · 1.14 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
""" setup.py for python-schema_registry."""
from setuptools import setup, find_packages
__version__ = "1.2.1"
with open("README.md") as readme_file:
long_description = readme_file.read()
requires = ["fastavro>=0.22.3", "requests>=2.22.0"]
setup(
name="python-schema-registry-client",
version=__version__,
description="Python Rest Client to interact against Schema Registry Confluent Server to manage Avro Schemas",
long_description=long_description,
author="Marcos Schroh",
author_email="[email protected]",
install_requires=requires,
extras_require={"faust": ["faust>=1.7.0"]},
url="https://github.com/marcosschroh/python-schema-registry-client",
download_url="",
packages=find_packages(exclude=("tests",)),
include_package_data=True,
license="GPLv3",
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Topic :: Software Development",
],
keywords=(
"""
Schema Registry, Python, Avro, Apache, Apache Avro
"""
),
)