forked from marcosschroh/dataclasses-avroschema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
55 lines (49 loc) · 1.56 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
""" setup.py for dataclasses-avroschema."""
from setuptools import find_packages, setup
__version__ = "0.32.1"
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.5.4",
"pytz",
"dacite>=1.6.0",
"faker>=8.1.1",
'typing_extensions>=3.7.4;python_version<"3.9"',
"stringcase>=1.2.0",
],
extras_require={
"pydantic": ["pydantic>=1.9.0"],
},
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=[
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Software Development",
],
keywords=(
"""
Python, Data Classes, Avro Schema, Avro, Apache, Data Streaming
"""
),
)