-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
56 lines (46 loc) · 1.69 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
48
49
50
51
52
53
54
55
56
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from os import path, environ
from subprocess import call
from setuptools import setup
from setuptools.command.install import install
try:
from configparser import ConfigParser # @UnusedImport
except:
from ConfigParser import ConfigParser # @UnresolvedImport @Reimport
plugin_module = 'android_controller'
plugin_path = path.dirname(path.abspath(__file__))
class CopyPlugin(install):
def run(self):
default_data_home = path.join("~", ".local", "share")
data_home = environ.get("XDG_DATA_HOME", default_data_home)
dirs = [data_home, "kupfer", "plugins"]
install_path = path.expanduser(path.join(*dirs))
print("mkdir {}".format(install_path))
call("mkdir -p {}".format(install_path), shell=True)
plugin_file = path.join(plugin_path, plugin_module + '.py')
print("Copy {} to {}".format(plugin_file, install_path))
call("cp -p {} {}".format(plugin_file, install_path), shell=True)
def read_cfg():
parser = ConfigParser()
parser.read(path.join(plugin_path, 'setup.cfg'))
for k, v in parser.items('metadata'):
yield k, v
def convert(cfgs):
from_to = {
'summary': lambda k, v: ('description', v),
'home-page': lambda k, v: ('url', v),
'classifiers': lambda k, v: (k, v.splitlines()),
'description-file': lambda k, v: ('long_description', open(v).read())
}
std_m = lambda k, v: (k.replace('-', '_'), v)
for k, v in cfgs:
m = from_to.get(k, std_m)
yield m(k, v)
setup(
cmdclass={'install': CopyPlugin},
py_modules=[plugin_module],
zip_safe=False,
version='0.2.0',
**dict(convert(read_cfg()))
)