-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
55 lines (50 loc) · 1.83 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
53
54
55
import sys
import os
from setuptools import setup, find_packages
if sys.version_info < (3, 6):
raise Exception(
"Python 3.6 or higher is required. Your version is %s." % sys.version)
version_path = os.path.join(os.path.dirname(os.path.realpath(__file__)),
'efb_patch_middleware/__version__.py')
__version__ = ""
exec(open(version_path).read())
long_description = open('README.md', encoding="utf-8").read()
setup(
name='efb-patch-middleware',
packages=find_packages(
exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
version=__version__,
description='Patch middleware for EH Forwarder Bot, enhance functions.',
long_description=long_description,
long_description_content_type='text/markdown',
author='WolfSilver',
author_email='[email protected]',
url='https://github.com/efb-middleware/patch',
license='AGPLv3+',
include_package_data=True,
python_requires='>=3.6',
keywords=['ehforwarderbot', 'EH Forwarder Bot', 'EH Forwarder Bot Middleware', 'Patch'],
classifiers=[
"Development Status :: 3 - Alpha",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Topic :: Communications :: Chat",
"Topic :: Utilities"
],
install_requires=[
"ehforwarderbot",
"efb_telegram_master",
"efb_wechat_slave",
"python-telegram-bot",
"peewee",
"PyYaml",
"Pillow",
],
entry_points={
"ehforwarderbot.middleware": "patch.PatchMiddleware = efb_patch_middleware:PatchMiddleware"
}
)