forked from aszlig/hetzner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
42 lines (36 loc) · 1.11 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
#!/usr/bin/env python
import os
import sys
from distutils.core import setup, Command
PYTHON_MODULES = [
'hetzner',
'hetzner.rdns',
'hetzner.robot',
'hetzner.server',
'hetzner.util',
]
class RunTests(Command):
description = "run test suite"
user_options = []
initialize_options = finalize_options = lambda self: None
def run(self):
from doctest import testmod
for module in PYTHON_MODULES:
modpath = os.path.join(*module.split('.'))
package, name = os.path.split(modpath)
sys.path.insert(0, package)
imported = __import__(name)
del sys.path[0]
failures, _ = testmod(imported, report=True)
if failures > 0:
raise SystemExit(1)
setup(name='hetzner',
version='0.7.0',
description='High level access to the Hetzner robot',
url='https://github.com/RedMoonStudios/hetzner',
author='aszlig',
author_email='[email protected]',
scripts=['hetznerctl'],
py_modules=PYTHON_MODULES,
cmdclass={'test': RunTests},
license='BSD')