-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathsetup.py
More file actions
39 lines (34 loc) · 1.07 KB
/
setup.py
File metadata and controls
39 lines (34 loc) · 1.07 KB
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
from setuptools import setup, find_packages
import pathlib
import re
WORK_DIR = pathlib.Path(__file__).parent
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
__version__ = ""
exec(open('wechatrobot/__version__.py').read())
setup(
name="python-comwechatrobot-http",
version=__version__,
description='http api for comwechatrobot',
author='honus',
author_email="honusmr@gmail.com",
url="",
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
python_requires='>=3.7',
keywords=["wechatrobot"],
install_requires=[
"requests",
"pydantic",
"protobuf==3.20.1",
],
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Topic :: Software Development :: User Interfaces',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.7',
"Operating System :: OS Independent"
]
)