-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
27 lines (23 loc) · 870 Bytes
/
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
#!/usr/bin/env python
from distutils.core import setup
import os, sys
files=[]
for f in os.path.abspath(''):
files.append(f)
setup(name = 'sinthgunt',
version = '2.1.0',
description = 'Sinthgunt Converter',
long_description = 'Sinthgunt Converter',
author = 'Kaare Hartvig Jensen and Thomas R. N. Janson',
author_email = '[email protected]',
url = 'http://sinthgunt.googlecode.com',
license = 'GPLv3',
packages = ['Sinthgunt'],
package_data = {'sinthgunt': files},
scripts = ['sinthgunt','youtube-dl-sinthgunt'],
data_files=[
('/usr/share/sinthgunt',['share/sinthgunt.glade','share/presets.xml','share/logo.png','share/icon.png','README.txt','LICENSE.txt','sinthgunt.html']),
('/usr/share/applications',['share/sinthgunt.desktop']),
('/usr/share/pixmaps',['share/sinthgunt.png']),
]
)