-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
41 lines (32 loc) · 985 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/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.cream.Console'
data_files = []
data_files.extend(
[
('share/cream/{0}/configuration'.format(ID),
['src/configuration/scheme.xml']),
('share/cream/{0}/'.format(ID),
['src/manifest.xml'])
])
setup(
name = 'console',
version = '0.0.9',
author = 'The Cream Project (http://cream-project.org)',
url = 'http://github.com/cream/console',
data_files = data_files,
package_dir = {'console': 'src/console'},
packages = ['console'],
cmdclass={'install_scripts': post_install},
scripts = ['src/console.py']
)