-
Notifications
You must be signed in to change notification settings - Fork 211
/
setup.py
executable file
·158 lines (136 loc) · 4.89 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
#!/usr/bin/env python
import re
from glob import glob
from itertools import chain
from os.path import basename
from os.path import dirname
from os.path import join
from os.path import splitext
from setuptools import Command
from setuptools import find_packages
from setuptools import setup
try:
# https://setuptools.pypa.io/en/latest/deprecated/distutils-legacy.html
from setuptools.command.build import build
except ImportError:
from distutils.command.build import build
from setuptools.command.develop import develop
from setuptools.command.easy_install import easy_install
from setuptools.command.install_lib import install_lib
def read(*names, **kwargs):
with open(
join(dirname(__file__), *names),
encoding=kwargs.get('encoding', 'utf8')
) as fh:
return fh.read()
class BuildWithPTH(build):
def run(self, *args, **kwargs):
super().run(*args, **kwargs)
path = join(dirname(__file__), 'src', 'pytest-cov.pth')
dest = join(self.build_lib, basename(path))
self.copy_file(path, dest)
class EasyInstallWithPTH(easy_install):
def run(self, *args, **kwargs):
super().run(*args, **kwargs)
path = join(dirname(__file__), 'src', 'pytest-cov.pth')
dest = join(self.install_dir, basename(path))
self.copy_file(path, dest)
class InstallLibWithPTH(install_lib):
def run(self, *args, **kwargs):
super().run(*args, **kwargs)
path = join(dirname(__file__), 'src', 'pytest-cov.pth')
dest = join(self.install_dir, basename(path))
self.copy_file(path, dest)
self.outputs = [dest]
def get_outputs(self):
return chain(super().get_outputs(), self.outputs)
class DevelopWithPTH(develop):
def run(self, *args, **kwargs):
super().run(*args, **kwargs)
path = join(dirname(__file__), 'src', 'pytest-cov.pth')
dest = join(self.install_dir, basename(path))
self.copy_file(path, dest)
class GeneratePTH(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
with open(join(dirname(__file__), 'src', 'pytest-cov.pth'), 'w') as fh:
with open(join(dirname(__file__), 'src', 'pytest-cov.embed')) as sh:
fh.write(
f"import os, sys;exec({sh.read().replace(' ', ' ')!r})"
)
setup(
name='pytest-cov',
version='4.1.0',
license='MIT',
description='Pytest plugin for measuring coverage.',
long_description='{}\n{}'.format(read('README.rst'), re.sub(':[a-z]+:`~?(.*?)`', r'``\1``', read('CHANGELOG.rst'))),
author='Marc Schlaich',
author_email='marc.schlaich@gmail.com',
url='https://github.com/pytest-dev/pytest-cov',
packages=find_packages('src'),
package_dir={'': 'src'},
py_modules=[splitext(basename(path))[0] for path in glob('src/*.py')],
include_package_data=True,
zip_safe=False,
classifiers=[
# complete classifier list: http://pypi.python.org/pypi?%3Aaction=list_classifiers
'Development Status :: 5 - Production/Stable',
'Framework :: Pytest',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Operating System :: Unix',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3 :: Only',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Testing',
'Topic :: Utilities',
],
project_urls={
'Documentation': 'https://pytest-cov.readthedocs.io/',
'Changelog': 'https://pytest-cov.readthedocs.io/en/latest/changelog.html',
'Issue Tracker': 'https://github.com/pytest-dev/pytest-cov/issues',
},
keywords=[
'cover', 'coverage', 'pytest', 'py.test', 'distributed', 'parallel',
],
install_requires=[
'pytest>=4.6',
'coverage[toml]>=5.2.1'
],
python_requires='>=3.7',
extras_require={
'testing': [
'fields',
'hunter',
'process-tests',
'six',
'pytest-xdist',
'virtualenv',
]
},
entry_points={
'pytest11': [
'pytest_cov = pytest_cov.plugin',
],
},
cmdclass={
'build': BuildWithPTH,
'easy_install': EasyInstallWithPTH,
'install_lib': InstallLibWithPTH,
'develop': DevelopWithPTH,
'genpth': GeneratePTH,
},
)