-
Notifications
You must be signed in to change notification settings - Fork 5
/
setup.py
42 lines (37 loc) · 997 Bytes
/
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
import setuptools
install_requires = [
"click",
"confluent-kafka[avro]>=1.9,<2",
"mmh3",
"prometheus_client",
"pydantic[dotenv]<2",
"sqlitedict",
]
dev_requires = install_requires + [
"black",
"pip-tools",
"pre-commit",
"pytest",
"pytest-cov",
"sphinx",
"sphinx-autodoc-typehints",
"time-machine",
"twine",
]
packages = setuptools.find_packages()
setuptools.setup(
name="fluvii",
version="1.1.1",
description="A simple Kafka streams implementation in Python using confluent-kafka-python",
packages=packages,
install_requires=install_requires,
dev_requires=dev_requires,
include_package_data=True,
extras_require={"dev": dev_requires},
entry_points={'console_scripts': ['fluvii = fluvii.cli.__main__:fluvii_cli']},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
],
)