forked from pytest-dev/pytest-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
35 lines (33 loc) · 1.23 KB
/
setup.py
File metadata and controls
35 lines (33 loc) · 1.23 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
from setuptools import setup
setup(
name="pytest-cpp",
use_scm_version=True,
setup_requires=["setuptools_scm"],
packages=["pytest_cpp"],
package_dir={"": "src"},
entry_points={"pytest11": ["cpp = pytest_cpp.plugin"],},
install_requires=["pytest !=5.4.0, !=5.4.1", "colorama",],
python_requires=">=3.6",
# metadata for upload to PyPI
author="Bruno Oliveira",
author_email="nicoddemus@gmail.com",
description="Use pytest's runner to discover and execute C++ tests",
long_description=open("README.rst").read(),
license="MIT",
keywords="pytest test unittest",
url="http://github.com/pytest-dev/pytest-cpp",
classifiers=[
"Development Status :: 4 - Beta",
"Framework :: Pytest",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: C++",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing",
],
)