3 Star 13 Fork 5

InstallB / hagworm

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
setup.py 1.96 KB
一键复制 编辑 原始数据 按行查看 历史
InstallB 提交于 2024-03-08 11:40 . 修复已知问题
# -*- coding: utf-8 -*-
__author__ = r'wsb310@gmail.com'
import setuptools
from hagworm import __version__
with open(r'README.md', encoding=r'utf8') as stream:
long_description = stream.read()
setuptools.setup(
name=r'hagworm',
version=__version__,
license=r'Apache License Version 2.0',
platforms=[r'all'],
author=r'Shaobo.Wang',
author_email=r'wsb310@gmail.com',
description=r'Network Development Suite',
long_description=long_description,
long_description_content_type=r'text/markdown',
url=r'https://gitee.com/wsb310/hagworm',
packages=setuptools.find_packages(),
python_requires=r'>=3.8',
install_requires=[
r'Cython==3.0.5',
r'APScheduler==3.10.4',
r'ahocorasick-rs==0.20.0',
r'Pillow==10.1.0',
r'PyJWT==2.8.0',
r'PyYAML==6.0.1',
r'SQLAlchemy==2.0.23',
r'coredis==4.16.0',
r'asyncmy==0.2.8',
r'aiosmtplib==3.0.1',
r'aio-pika==9.3.0',
r'cachetools==5.3.2',
r'confluent-kafka==2.3.0',
r'cryptography==41.0.5',
r'elasticsearch==8.12.1',
r'fastapi==0.104.1',
r'filelock==3.13.1',
r'gunicorn==21.2.0',
r'grpcio==1.60.0',
r'httpx==0.25.1',
r'httptools==0.6.1',
r'igraph==0.11.2',
r'loguru==0.7.2',
r'motor==3.3.1',
r'msgpack==1.0.7',
r'ntplib==0.4.0',
r'psutil==5.9.6',
r'pytest-asyncio==0.21.1',
r'python-dateutil==2.8.2',
r'python-stdnum==1.19',
r'python-multipart==0.0.6',
r'pymongo==4.6.2',
r'qrcode==7.4.2',
r'texttable==1.7.0',
r'ujson==5.8.0',
r'uvicorn[standard]==0.23.2',
r'uvloop==0.19.0;sys_platform!="win32"',
r'xmltodict==0.13.0',
],
classifiers=[
r'Programming Language :: Python :: 3.7',
r'License :: OSI Approved :: Apache Software License',
r'Operating System :: POSIX :: Linux',
],
)
Python
1
https://gitee.com/wsb310/hagworm.git
git@gitee.com:wsb310/hagworm.git
wsb310
hagworm
hagworm
master

搜索帮助