FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
pytest-cpp/setup.py at master · pytest-dev/pytest-cpp · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
pytest-dev
/
pytest-cpp
Public
Notifications
You must be signed in to change notification settings
Fork
26
Star
147
Code
Issues
5
Pull requests
1
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
pytest-cpp
/
setup.py
Copy path
More file actions
More file actions
Latest commit
History
History
History
38 lines (37 loc) · 1.33 KB
Breadcrumbs
pytest-cpp
/
setup.py
Copy path
File metadata and controls
38 lines (37 loc) · 1.33 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
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"
],
python_requires
=
">=3.8"
,
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
(),
long_description_content_type
=
"text/x-rst"
,
license
=
"MIT"
,
keywords
=
"pytest test unittest"
,
url
=
"http://github.com/pytest-dev/pytest-cpp"
,
classifiers
=
[
"Development Status :: 5 - Production/Stable"
,
"Framework :: Pytest"
,
"Intended Audience :: Developers"
,
"License :: OSI Approved :: MIT License"
,
"Operating System :: OS Independent"
,
"Programming Language :: Python :: 3"
,
"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 :: Quality Assurance"
,
"Topic :: Software Development :: Testing"
,
],
)
Back
|
FazBrowse Home
|
New Git URL