forked from ehForwarderBot/ehForwarderBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
54 lines (50 loc) · 1.75 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
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').read()
__version__ = ""
exec(open('ehforwarderbot/__version__.py').read())
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='[email protected]',
url='https://github.com/blueset/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",
"Topic :: Utilities"
],
install_requires=[
"ruamel.yaml",
"asciimatics",
"cjkwrap",
"typing",
"typing_extensions"
],
extras_require={
'telemetry': ['1a23-telemetry']
},
entry_points={
"console_scripts": [
'ehforwarderbot = ehforwarderbot.__main__:main',
'efb-wizard = ehforwarderbot.wizard:main'
]
}
)