-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathsetup.py
executable file
·60 lines (55 loc) · 1.64 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
#!/usr/bin/env python
import sys
from setuptools import setup
from qhangups.version import __version__
install_requires = [
"hangups>=0.4.1",
"appdirs",
"Quamash"
]
if sys.version_info < (3, 4):
install_requires.append("asyncio")
setup(
name="QHangups",
version=__version__,
description="Alternative client for Google Hangouts written in PyQt",
author="Michal Krenek (Mikos)",
author_email="[email protected]",
url="https://github.com/xmikos/qhangups",
license="GNU GPLv3",
packages=["qhangups"],
package_data={
"qhangups": [
"qhangups.svg",
"qhangups_disabled.svg",
"*.ui",
"languages/*.qm",
"languages/*.ts"
]
},
data_files=[
("share/applications", ["qhangups.desktop"]),
("share/pixmaps", ["qhangups.png"])
],
entry_points={
"gui_scripts": [
"qhangups=qhangups.__main__:main"
],
},
install_requires=install_requires,
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: MacOS X",
"Environment :: Win32 (MS Windows)",
"Environment :: X11 Applications :: Qt",
"Intended Audience :: End Users/Desktop",
"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",
"Programming Language :: Python :: 3.5",
"Topic :: Communications :: Chat"
]
)