-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (28 loc) · 727 Bytes
/
setup.py
File metadata and controls
30 lines (28 loc) · 727 Bytes
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, find_packages
import schema
requires = [
"dataclasses-avroschema",
"faust-streaming",
"python-schema-registry-client",
"simple-settings"
]
setup(
name='faust-example',
version='1.2.2',
description='Faust example with Docker Compose',
classifiers=[
"Programming Language :: Python"
],
author='Christopher Essmann',
author_email='christopher.essmann@web.de',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=requires,
entry_points={
'faust.codecs': [
'avro_traffic = schema:avro_traffic_codec',
'avro_weather = schema:avro_weather_codec'
]
}
)