WeChatFerry/clients/http/setup.py

51 lines
1.3 KiB
Python
Raw Normal View History

2023-05-06 20:53:26 +08:00
#! /usr/bin/env python3
# -*- coding: utf-8 -*-
from __future__ import print_function
from setuptools import setup, find_packages
import wcfhttp
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="wcfhttp",
version=wcfhttp.core.__version__,
author="Changhua",
author_email="lichanghua0821@gmail.com",
description="一个玩微信的工具",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
url="https://github.com/lich0821/WeChatFerry",
python_requires=">=3.8",
packages=find_packages(),
include_package_data=True,
entry_points={
'console_scripts': [
'wcfhttp=wcfhttp.main:main'
]
},
install_requires=[
"setuptools",
"fastapi",
2023-05-10 13:21:36 +08:00
"uvicorn[standard]",
2023-09-28 08:51:20 +08:00
"wcferry>=39.0.3.0",
2023-05-06 20:53:26 +08:00
],
classifiers=[
"Environment :: Win32 (MS Windows)",
"Intended Audience :: Developers",
"Intended Audience :: Customer Service",
"Topic :: Communications :: Chat",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
],
project_urls={
"Documentation": "https://wechatferry.readthedocs.io/zh/latest/index.html",
"GitHub": "https://github.com/lich0821/WeChatFerry/",
},
)