-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
71 lines (66 loc) · 2.28 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
66
67
68
69
70
71
#!/usr/bin/env python3
import os
from distutils.command.build import build
from distutils.core import setup
class BuildQm(build):
os.system('pyrcc5 -o sansimera_qt/qrc_resources.py sansimera_qt/resources.qrc')
setup(
name='sansimera_qt',
version='1.1.0',
description='A system tray application for the namedays and the events of the day back in the history',
author='Dimitrios Glentadakis',
author_email='[email protected]',
url='https://github.com/dglent/sansimera-qt',
license='GPLv3',
packages=['sansimera_qt'],
keywords=['eortologio', 'qt', 'trayicon', 'history', 'events', 'san simera'],
data_files=[
(
'/usr/share/applications',
[
'share/sansimera-qt.desktop'
]
),
(
'/usr/share/icons',
[
'sansimera_qt/images/sansimera-qt.png'
]
),
(
'/usr/share/sansimera_qt/images',
[
'sansimera_qt/images/application-exit.png',
'sansimera_qt/images/dialog-information.png',
'sansimera_qt/images/go-next-view.png',
'sansimera_qt/images/go-previous-view.png',
'sansimera_qt/images/preferences-desktop-notification-bell.png',
'sansimera_qt/images/sansimera-qt.png',
'sansimera_qt/images/view-refresh.png',
'sansimera_qt/images/preferences-system-windows.png',
]
),
(
'/usr/share/doc/sansimera-qt',
[
'README.md',
'LICENSE.md'
]
)
],
scripts=["bin/sansimera-qt"],
include_package_data=True,
zip_safe=True,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Other Audience',
'Natural Language :: Greek',
'License :: OSI Approved :: GNU General Public License (GPL)',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: POSIX :: Linux',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
],
)