forked from boxed/mutmut
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·125 lines (101 loc) · 3.54 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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
import os
import re
import io
import inspect
from setuptools import setup, find_packages, Command
def read_file(name):
with io.open(os.path.join(os.path.dirname(__file__), name), encoding='utf8') as f:
return f.read()
def read_reqs(name):
return [line for line in read_file(name).split('\n') if line and not line.strip().startswith('#')]
def read_version():
m = re.search(r'''__version__\s*=\s*['"]([^'"]*)['"]''', read_file('mutmut/__init__.py'))
if m:
return m.group(1)
raise ValueError("couldn't find version")
class Tag(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
from subprocess import call
version = read_version()
errno = call(['git', 'tag', '--annotate', version, '--message', 'Version {}'.format(version)])
if errno == 0:
print("Added tag for version {}".format(version))
raise SystemExit(errno)
class ReleaseCheck(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
from subprocess import check_output
tag = check_output(['git', 'describe', '--all', '--exact-match', 'HEAD']).strip().split('/')[-1]
version = read_version()
if tag != version:
print('Missing {} tag on release'.format(version))
raise SystemExit(1)
current_branch = check_output(['git', 'rev-parse', '--abbrev-ref', 'HEAD']).strip()
if current_branch != 'master':
print('Only release from master')
raise SystemExit(1)
print("Ok to distribute files")
test_reqs = read_reqs('test_requirements.txt')
extras_reqs = {
'pytest': [
item for item in test_reqs if item.startswith('pytest')],
'coverage': [
item for item in test_reqs if item.startswith('coverage')],
'patch': [
item for item in test_reqs if item.startswith('whatthepatch')],
}
running_inside_tests = any('pytest' in x[1] or 'hammett' in x[1] for x in inspect.stack())
# NB: _don't_ add namespace_packages to setup(), it'll break
# everything using imp.find_module
setup(
name='mutmut',
version=read_version(),
description='mutation testing for Python 3',
long_description='' if running_inside_tests else read_file('README.rst'),
author='Anders Hovmöller',
author_email='[email protected]',
url='https://github.com/boxed/mutmut',
packages=find_packages('.'),
package_dir={'': '.'},
include_package_data=True,
license="BSD",
zip_safe=False,
keywords='mutmut mutant mutation test testing',
python_requires='>=3.7',
install_requires=read_reqs('requirements.txt'),
extras_require=extras_reqs,
tests_require=test_reqs,
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.7',
],
test_suite='tests',
cmdclass={
'tag': Tag,
'release_check': ReleaseCheck,
},
# if I add entry_points while pytest runs,
# it imports before the coverage collecting starts
entry_points={
'pytest11': [
'mutmut = mutmut.pytestplugin',
],
} if running_inside_tests else {
'console_scripts': ["mutmut = mutmut.__main__:climain"],
},
)