forked from marcosschroh/python-schema-registry-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
80 lines (72 loc) · 2.02 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#!/usr/bin/env python
# -*- coding: utf-8 -*-
""" setup.py for python-schema-registry-client."""
from setuptools import find_packages, setup
__version__ = "2.4.1"
with open("README.md") as readme_file:
long_description = readme_file.read()
requires = [
"fastavro>=1.4.4",
"jsonschema>=3.2.0",
"httpx>=0.19.0",
"aiofiles>=0.7.0",
]
description = "Python Rest Client to interact against Schema Registry Confluent Server to manage Avro Schemas"
setup(
name="python-schema-registry-client",
version=__version__,
description=description,
long_description=long_description,
long_description_content_type="text/markdown",
author="Marcos Schroh",
author_email="[email protected]",
install_requires=requires,
extras_require={
"faust": [
"faust-streaming",
],
"docs": [
"mkdocs",
"mkdocs-material",
"mkautodoc",
],
"tests": [
"black",
"autoflake",
"flake8",
"mypy==0.782",
"isort",
"pytest",
"pytest-mock",
"pytest-asyncio<0.19.0",
"faker",
"codecov",
"pytest-cov",
"dataclasses-avroschema",
"pydantic",
],
},
url="https://github.com/marcosschroh/python-schema-registry-client",
download_url="https://pypi.org/project/python-schema-registry-client/#files",
packages=find_packages(
exclude=(
"tests",
"docs",
)
),
include_package_data=True,
license="MIT",
classifiers=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development",
],
keywords=(
"""
Schema Registry, Python, Avro, Apache, Apache Avro, JSON, JSON Schema
"""
),
)