forked from DaveMDS/egitu
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·35 lines (31 loc) · 1 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
#!/usr/bin/env python
from distutils.core import setup
from efl.utils.setup import build_extra, build_edc, uninstall
from egitu import __version__
setup(
name = 'egitu',
version = __version__,
description = 'Git GUI',
long_description = 'Efl GIT gUi written in python',
license = "GNU GPL",
author = 'Dave Andreoli',
author_email = '[email protected]',
packages = ['egitu'],
requires = ['efl (>=1.13)', 'xdg'],
provides = ['egitu'],
scripts = ['bin/egitu'],
data_files = [
('share/egitu/themes/default', ['data/themes/default/images/avatar.png']),
('share/applications', ['data/egitu.desktop']),
('share/icons', ['data/icons/256x256/egitu.png']),
('share/icons/hicolor/256x256/apps', ['data/icons/256x256/egitu.png']),
],
cmdclass={
'build': build_extra,
'build_edc': build_edc,
'uninstall': uninstall,
},
command_options={
'install': {'record': ('setup.py', 'installed_files.txt')}
},
)