forked from xmikos/hangupsbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·43 lines (41 loc) · 1.27 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
#!/usr/bin/env python
from setuptools import setup
from hangupsbot.version import __version__
setup(
name="HangupsBot",
version=__version__,
description="Bot for Google Hangouts",
author="Michal Krenek (Mikos)",
author_email="[email protected]",
url="https://github.com/xmikos/hangupsbot",
license="GNU GPLv3",
packages=["hangupsbot", "hangupsbot.handlers", "hangupsbot.commands"],
package_data={
"hangupsbot": [
"config.json",
"locale/*/*/*.mo",
"locale/*/*/*.po"
]
},
entry_points={
"console_scripts": [
"hangupsbot=hangupsbot.__main__:main"
],
},
install_requires=[
"hangups>=0.2.7",
"appdirs",
"asyncio" # Only needed for backward compatibility with Python 3.3
],
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Topic :: Communications :: Chat"
]
)