-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
30 lines (27 loc) · 766 Bytes
/
setup.py
File metadata and controls
30 lines (27 loc) · 766 Bytes
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
# SPDX-FileCopyrightText: 2021 Malte Kliemann, Ole Kliemann
#
# SPDX-License-Identifier: GPL-3.0-or-later
from setuptools import setup
with open('README.md') as readme:
long_description = readme.read()
setup(
name='drmock-generator',
author='Malte Kliemann, Ole Kliemann',
description='C++ mock object generator',
long_description=long_description,
long_description_content_type='text/markdown',
license='GLP-3.0-or-later',
version='0.6.0',
packages=['drmock'],
package_dir={'': 'src'},
entry_points={
'console_scripts': [
'drmock-generator = drmock.commandline:main'
]
},
include_package_data=True,
python_requires='>=3.7',
install_requires=[
'clang>=11.0',
]
)