forked from boxed/mutmut
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·117 lines (98 loc) · 3.34 KB
/
setup.py
File metadata and controls
executable file
·117 lines (98 loc) · 3.34 KB
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
import os
import re
from setuptools import setup, find_packages, Command
readme = open('README.rst').read()
history = open('HISTORY.rst').read().replace('.. :changelog:', '')
def read_reqs(name):
with open(os.path.join(os.path.dirname(__file__), name)) as f:
return [line for line in f.read().split('\n') if line and not line.strip().startswith('#')]
def read_version():
with open(os.path.join('mutmut', '__init__.py')) as f:
m = re.search(r'''__version__\s*=\s*['"]([^'"]*)['"]''', f.read())
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 %s' % version])
if errno == 0:
print("Added tag for version %s" % 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 %s tag on release' % 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")
import inspect
running_inside_tests = any(['pytest' 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='',
long_description=readme,
author='Anders Hovmöller',
author_email='boxed@killingar.net',
url='https://github.com/boxed/mutmut',
packages=find_packages('.'),
package_dir={'': '.'},
include_package_data=True,
install_requires=read_reqs('requirements.txt'),
license="BSD",
zip_safe=False,
keywords='',
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
"Framework :: Pytest",
],
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 {},
scripts=['bin/mutmut'],
data_files=[
'README.rst',
'HISTORY.rst',
'LICENSE',
'requirements.txt',
'venv_requirements.txt',
'test_requirements.txt',
'setup.cfg',
'tox.ini',
],
)