-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
47 lines (38 loc) · 1.21 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
#!/usr/bin/env python
import os
from distutils.core import setup
from distutils.command.install_scripts import install_scripts
class post_install(install_scripts):
def run(self):
install_scripts.run(self)
from shutil import move
for i in self.get_outputs():
n = i.replace('.py', '')
move(i, n)
print "moving '{0}' to '{1}'".format(i, n)
ID = 'org.sbillaudelle.ImgurUploader'
data_files = []
data_files.extend(
[
#('share/cream/{0}/configuration'.format(ID),
# ['src/configuration/scheme.xml']),
('share/cream/{0}/'.format(ID),
['src/manifest.xml']),
('share/cream/{0}/data'.format(ID),
['src/data/interface.ui', 'src/data/imgur.png']),
('share/icons',
['src/data/imgur.png']),
('share/applications',
['imgur-uploader.desktop'])
])
setup(
name = 'imgur-uploader',
version = '0.0.3',
author = 'The Cream Project (http://cream-project.org)',
url = 'http://github.com/sbillaudelle/imgur-uploader',
data_files = data_files,
package_dir = {'imgur': 'src/imgur'},
packages = ['imgur'],
cmdclass={'install_scripts': post_install},
scripts = ['src/imgur-uploader.py']
)