-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
71 lines (59 loc) · 2.3 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
71
# -*- coding: utf-8 -*-
"""scons-tool-cxxtest
"""
from setuptools import setup
import setuptools.command.install
import setuptools.command.develop
import os
import sys
if sys.version_info < (3, 0):
from io import open as uopen
else:
uopen = open
here = os.path.abspath(os.path.dirname(__file__))
readme_rst = os.path.join(here, 'README.rst')
with uopen(readme_rst, encoding='utf-8') as f:
readme = f.read()
about = {}
about_py = os.path.join(here, 'about.py')
with open(about_py) as f:
exec(f.read(), about)
class develop(setuptools.command.develop.develop):
def _make_symlinks(self, sources):
here = os.path.abspath(os.path.dirname(__file__))
subdir = os.path.join(here, 'sconstool', 'cxxtest')
reldir = os.path.join(os.path.pardir, os.path.pardir)
if not os.path.exists(subdir):
os.makedirs(subdir)
for source in sources:
fullsrc = os.path.join(subdir, source)
if not os.path.exists(fullsrc):
target = os.path.join(reldir, source)
os.symlink(target, fullsrc)
readme_txt = os.path.join(subdir, 'README.txt')
if not os.path.exists(readme_txt):
with open(readme_txt, 'w') as f:
f.write('This directory contains symlinks to workaround ' +
'broken "pip install -e ."')
def run(self, *args, **kw):
self._make_symlinks(['__init__.py', 'about.py'])
setuptools.command.develop.develop.run(self, *args, **kw)
install = setuptools.command.install.install
setup(
name='scons-tool-cxxtest',
version=about['__version__'],
package_dir={'sconstool.cxxtest': '.'},
packages=['sconstool.cxxtest'],
namespace_packages=['sconstool'],
description='SCons tool to compile and run tests based on CxxTest framework',
long_description=readme,
long_description_content_type='text/x-rst',
url='https://github.com/ptomulik/scons-tool-cxxtest',
author='Paweł Tomulik',
author_email='[email protected]',
cmdclass={'develop': develop, 'install': install},
install_requires=['scons-tool-cxxtestgen >= 0.1.5',
'scons-tool-util >= 0.1.9'],
python_requires='>=2.7'
)
# vim: set expandtab tabstop=4 shiftwidth=4: