Skip to content

Commit 1283c8d

Browse files
authored
docs: add CITATION.cff (#1641)
* Add CITATION.cff * Update manifest with CITATION.cff * Update authors field
1 parent 5826562 commit 1283c8d

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

CITATION.cff

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
cff-version: 1.2.0
2+
title: "Coverage.py: The code coverage tool for Python"
3+
message: >-
4+
If you use this software, please cite it using the metadata from this file.
5+
type: software
6+
authors:
7+
- family-names: Batchelder
8+
given-names: Ned
9+
orcid: https://orcid.org/0009-0006-2659-884X
10+
- name: "Contributors to Coverage.py"
11+
repository-code: "https://github.com/nedbat/coveragepy"
12+
url: "https://coverage.readthedocs.io/"
13+
abstract: >-
14+
Coverage.py is a tool for measuring code coverage of Python programs. It monitors your program,
15+
noting which parts of the code have been executed, then analyzes the source to identify code
16+
that could have been executed but was not.
17+
Coverage measurement is typically used to gauge the effectiveness of tests. It can show which
18+
parts of your code are being exercised by tests, and which are not.
19+
license: Apache-2.0

MANIFEST.in

+1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
# .tar.gz source distribution would give you everything needed to continue
99
# developing the project. "pip install" will not install many of these files.
1010

11+
include CITATION.cff
1112
include CONTRIBUTORS.txt
1213
include CHANGES.rst
1314
include LICENSE.txt

0 commit comments

Comments
 (0)