-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
49 lines (45 loc) · 1.66 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
#!python3.6
# -*- coding: utf-8 -*-
from setuptools import setup
from headlock import __version__
from pathlib import Path
README_PATH = Path(__file__).parent / 'README.md'
setup(
name='headlock',
version=__version__,
description='An adapter for making C code testable from Python',
long_description=README_PATH.read_text(),
long_description_content_type='text/markdown',
author='Robert Hölzl',
author_email='robert.hoelzl@posteo.de',
url='https://headlock.readthedocs.io/en/latest/index.html',
packages=['headlock',
'headlock.address_space',
'headlock.c_data_model',
'headlock.integrations.pytest',
'headlock.libclang',
'headlock.buildsys_drvs'],
classifiers=[
'Development Status :: 4 - Beta',
'Operating System :: Microsoft :: Windows',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.6',
'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 :: 3.12',
'Programming Language :: C',
'Topic :: Software Development :: Testing',
],
entry_points = {
'pytest11': [
'headlock-debug-support = '
'headlock.integrations.pytest.plugin_headlock_debug',
'headlock-report-error = '
'headlock.integrations.pytest.plugin_headlock_report',
]
},
)