-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
52 lines (49 loc) · 1.55 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
from setuptools import setup
with open("README.md") as f:
long_description = f.read()
setup(
name="flask-and-kafka",
version="0.0.4",
url="https://github.com/heysaeid/flask-and-kafka.git",
license="MIT",
author="Saeid Noormohammadi",
author_email="heysaeid92@gmail.com",
description="Easily write your kafka producers and consumers in flask",
long_description=long_description,
long_description_content_type="text/markdown",
keywords=[
"flask",
"kafka",
"flask kafka",
"flask kafka consumer",
"flask-kafka",
"flask-kafka-consumer",
"flask-and-kafka",
"Flask-And-Kafka",
"flask kafka producer",
"kafka producer",
"flask-kafka-producer",
],
packages=["flask_and_kafka"],
zip_safe=False,
platforms="any",
install_requires=[
"flask",
"confluent-kafka",
],
classifiers=[
"Framework :: Flask",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)