forked from marcosschroh/dataclasses-avroschema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (31 loc) · 1.03 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
""" setup.py for dataclasses-avroschema."""
from setuptools import find_packages, setup
__version__ = "0.22.0"
with open("README.md") as readme_file:
long_description = readme_file.read()
setup(
name="dataclasses-avroschema",
version=__version__,
description="Generate Avro Schemas from a Python class",
long_description=long_description,
long_description_content_type="text/markdown",
author="Marcos Schroh",
install_requires=["inflect>=5.3.0", "fastavro>=1.4.0", "pytz", "dacite>=1.6.0", "faker>=8.1.1",],
author_email="[email protected]",
url="https://github.com/marcosschroh/dataclasses-avroschema",
download_url="",
packages=find_packages(exclude=("tests",)),
include_package_data=True,
license="MIT",
classifiers=[
"Programming Language :: Python :: 3.7",
"Topic :: Software Development",
],
keywords=(
"""
Python, Data Classes, Avro Schema, Avro, Apache, Data Streaming
"""
),
)