-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
35 lines (35 loc) · 1.2 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
from setuptools import setup
import zapzap
setup_requires = ['setuptools']
try:
setup(
name=zapzap.__appname__.lower(),
version=zapzap.__version__,
author=zapzap.__author__,
author_email=zapzap.__email__,
description=zapzap.__comment__,
url=zapzap.__website__,
license='GPLv3+',
packages=['zapzap',
'zapzap.config',
'zapzap.controllers',
'zapzap.models',
'zapzap.resources',
'zapzap.services',
'zapzap.views'
],
include_package_data=True,
package_data={'zapzap': ['po/*/LC_MESSAGES/*.mo']},
setup_requires=setup_requires,
entry_points={'gui_scripts': ['zapzap = zapzap.__main__:main']},
keywords='zapzap whatsapp client web app',
classifiers=[
'Environment :: X11 Applications :: Qt',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Topic :: Office/Business',
'Programming Language :: Python :: 3 :: Only'
]
)
except Exception as e:
print(e)