forked from vaab/gitchangelog
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
70 lines (63 loc) · 1.98 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
#!/usr/bin/env python
##
## You can download latest version of this file:
## $ wget https://gist.github.com/vaab/e0eae9607ae806b662d4/raw -O setup.py
## $ chmod +x setup.py
##
## This setup.py is meant to be run along with ``./autogen.sh`` that
## you can also find here: https://gist.github.com/vaab/9118087/raw
##
try:
from setuptools import setup
except ImportError:
from distribute_setup import use_setuptools
use_setuptools()
from setuptools import setup
##
## Ensure that ``./autogen.sh`` is run prior to using ``setup.py``
##
if "%%short-version%%".startswith("%%"):
import os.path
import sys
if not os.path.exists('./autogen.sh'):
sys.stderr.write(
"This source repository was not configured.\n"
"Please ensure ``./autogen.sh`` exists and that you are running "
"``setup.py`` from the project root directory.\n")
sys.exit(1)
if os.path.exists('.autogen.sh.output'):
sys.stderr.write(
"It seems that ``./autogen.sh`` couldn't do its job as expected.\n"
"Please try to launch ``./autogen.sh`` manualy, and send the "
"results to the\nmaintainer of this package.\n"
"Package will not be installed !\n")
sys.exit(1)
sys.stderr.write("Missing version information: "
"running './autogen.sh'...\n")
import os
import subprocess
os.system('./autogen.sh > .autogen.sh.output')
cmdline = sys.argv[:]
if cmdline[0] == "-c":
## XXXvlab: for some reason, this is needed when launched from pip
cmdline[0] = "setup.py"
errlvl = subprocess.call(["python", ] + cmdline)
os.unlink(".autogen.sh.output")
sys.exit(errlvl)
##
## Normal d2to1 setup
##
setup(
setup_requires=['d2to1'],
extras_require={
'Mustache': ["pystache", ],
'Mako': ["mako", ],
'test': [
"nose",
"minimock",
"mako",
"pystache",
],
},
d2to1=True
)