forked from Kami/python-yubico-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
105 lines (86 loc) · 2.92 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import re
import sys
import logging
from glob import glob
from os.path import splitext, basename, join as pjoin
from unittest import TextTestRunner, TestLoader
from setuptools import setup
from distutils.core import Command
sys.path.insert(0, pjoin(os.path.dirname(__file__)))
from tests.utils import MockAPIServerRunner
TEST_PATHS = ['tests']
version_re = re.compile(
r'__version__ = (\(.*?\))')
cwd = os.path.dirname(os.path.abspath(__file__))
fp = open(os.path.join(cwd, 'yubico_client', '__init__.py'))
version = None
for line in fp:
match = version_re.search(line)
if match:
version = eval(match.group(1))
break
else:
raise Exception('Cannot find version in __init__.py')
fp.close()
class TestCommand(Command):
description = 'run test suite'
user_options = []
def initialize_options(self):
FORMAT = '%(asctime)-15s [%(levelname)s] %(message)s'
logging.basicConfig(format=FORMAT)
THIS_DIR = os.path.abspath(os.path.split(__file__)[0])
sys.path.insert(0, THIS_DIR)
for test_path in TEST_PATHS:
sys.path.insert(0, pjoin(THIS_DIR, test_path))
self._dir = os.getcwd()
def finalize_options(self):
pass
def run(self):
self._run_mock_api_server()
status = self._run_tests()
sys.exit(status)
def _run_tests(self):
testfiles = []
for test_path in TEST_PATHS:
for t in glob(pjoin(self._dir, test_path, 'test_*.py')):
testfiles.append('.'.join(
[test_path.replace('/', '.'), splitext(basename(t))[0]]))
tests = TestLoader().loadTestsFromNames(testfiles)
t = TextTestRunner(verbosity=2)
res = t.run(tests)
return not res.wasSuccessful()
def _run_mock_api_server(self):
for port in [8881, 8882, 8883]:
server = MockAPIServerRunner(port=port)
server.setUp()
setup(name='yubico-client',
version='.' . join(map(str, version)),
description='Python Yubico Client',
author='Tomaz Muraus',
author_email='tomaz+pypi@tomaz.me',
license='BSD',
url='http://github.com/Kami/python-yubico-client/',
download_url='http://github.com/Kami/python-yubico-client/downloads/',
packages=['yubico_client'],
provides=['yubico_client'],
install_requires=[
'requests == 1.1.0',
],
cmdclass={
'test': TestCommand,
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Security',
'Topic :: Software Development :: Libraries :: Python Modules',
]
)