-
-
Notifications
You must be signed in to change notification settings - Fork 272
/
Copy pathsetup.py
65 lines (58 loc) · 2.11 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
56
57
58
59
60
61
62
63
64
65
import sys
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)
long_description = open('README.rst', encoding="utf-8").read()
__version__ = ""
exec(open('ehforwarderbot/__version__.py').read())
tests_require = ["pytest", "mypy"]
setup(
name='ehforwarderbot',
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
version=__version__,
description='An extensible message tunneling chat bot framework.',
long_description=long_description,
author='Eana Hufwe',
author_email='ilove@1a23.com',
url='https://github.com/ehForwarderBot/ehForwarderBot',
license='AGPLv3+',
python_requires='>=3.6',
include_package_data=True,
zip_safe=False,
keywords=['EFB', 'EH Forwarder Bot', 'Chat tunneling', 'IM', 'messaging'],
classifiers=[
"Development Status :: 4 - Beta",
"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 :: Software Development :: Libraries :: Application Frameworks",
"Typing :: Typed"
],
install_requires=[
"ruamel.yaml",
"bullet",
"cjkwrap",
"typing_extensions"
],
tests_require=tests_require,
extras_require={
'telemetry': ['1a23-telemetry'],
'trace': ['hanging-threads'],
'tests': tests_require
},
entry_points={
"console_scripts": [
'ehforwarderbot = ehforwarderbot.__main__:main',
'efb-wizard = ehforwarderbot.wizard:main'
]
},
project_urls={
"Documentation": "https://ehForwarderBot.readthedocs.io",
"GitHub Discussions": "https://github.com/ehForwarderBot/ehForwarderBot/discussions",
"Telegram Chat": "https://t.me/EFBSupport"
}
)