-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
34 lines (31 loc) · 997 Bytes
/
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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
"""Setup routine for Coveron Instrumenter.
Coveron is a code coverage tool for the analysis of
statement, decision and MC/DC coverage metrics for
C and C++ code.
For more information, look at the README or the docs.
"""
from runpy import run_path
from setuptools import setup, find_packages
import versioneer
setup(name='coveron_instrumenter',
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
platforms=["any"],
python_requires='>=3.7',
packages=['coveron_instrumenter'],
install_requires=[
'colorama',
'jsonschema'
],
package_data={
'coveron_instrumenter': ['coveron_instrumenter/clang/*', 'coveron_instrumenter/coveron_runtime_helper/*']
},
include_package_data=True,
entry_points={
'console_scripts': [
'coveron_instrumenter=coveron_instrumenter.__main__:main'
],
},
)