forked from d4nj1/TLPUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (30 loc) · 838 Bytes
/
setup.py
File metadata and controls
31 lines (30 loc) · 838 Bytes
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
from setuptools import setup
from tlpui import __version__
setup(
name="TLPUI",
version=__version__,
author="Daniel Christophis",
author_email="code@devmind.org",
description="GTK UI for tlp (Python 3)",
url="https://github.com/d4nj1/TLPUI",
license="GPLv2",
packages=["tlpui", "tlpui.ui_config_objects"],
package_data={'tlpui': [
'styles.css',
'configschema/*.json',
'defaults/*.conf',
'icons/*.svg',
'icons/flags/*.png',
'icons/themeable/hicolor/scalable/actions/*.svg',
'icons/themeable/hicolor/scalable/apps/*.svg',
'lang/*/LC_MESSAGES/*.mo'
]},
entry_points={
'gui_scripts': [
'tlpui = tlpui.__main__:main'
]
},
data_files=[
('/usr/share/applications', ["tlpui.desktop"])
]
)