-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
63 lines (56 loc) · 1.72 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
#!/usr/bin/env python
from setuptools import setup, find_packages, Command
import sys
from dibctl import version
class PyTest(Command):
user_options = [('pytest-args=', 'a', "Arguments to pass to py.test")]
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
import pytest
print("Running unit tests")
error_code = pytest.main([
'build',
'--ignore', 'build/doctests',
'--ignore', 'build/tests/test_bad_configs.py',
'--ignore', 'build/integration_tests'
])
if error_code:
sys.exit(error_code)
print("Running integration tests for docs examples")
# doctests should be run against current dir, not 'build'
# because config examples are not copied to build
# (they are installed as config files)
error_code = pytest.main(['doctests/'])
if error_code:
sys.exit(error_code)
setup(
name="dibctl",
version=version.VERSION,
description="diskimage-builder control",
author="George Shuklin",
author_email="[email protected]",
url="http://github.com/serverscom/dibctl",
packages=find_packages(),
install_requires=[
'PyYAML',
'keystoneauth1',
'python-glanceclient',
'python-novaclient',
'pytest-timeout',
'jsonschema',
'pytest', # not a mistake - we use pytest as a part of the app
'semantic_version',
'requests',
'urllib3',
'paramiko'
],
entry_points="""
[console_scripts]
dibctl=dibctl.commands:main
# """,
cmdclass={'test': PyTest},
long_description="""diskimage-builder control"""
)