-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (26 loc) · 857 Bytes
/
Copy pathsetup.py
File metadata and controls
30 lines (26 loc) · 857 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
# -*- coding: utf-8 -*-
# @Time : 2023/3/9-14:40
# @Author : 灯下客
# @Email :
# @File : setup.py
# @Software: PyCharm
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name='flask-kafka-python',
version='0.0.2',
packages=['flask_kafka'],
install_requires=['kafka-python'],
license='MIT',
description='Make it easier to integrate flask with kafka',
author='cookieGeGe',
author_email='zhang1114570651@gmail.com',
keywords=['kafka', 'consumer', 'kafkaesque', 'flask', 'simple', 'consumer', 'flask style', 'decorator'],
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/cookieGeGe/flask-kafka-python",
include_package_data=True,
python_requires='>=3.6',
platforms='any',
)