Skip to content

Commit

Permalink
docs: add CITATION.cff (#1641)
Browse files Browse the repository at this point in the history
* Add CITATION.cff

* Update manifest with CITATION.cff

* Update authors field
  • Loading branch information
schackartk committed Jun 13, 2023
1 parent 5826562 commit 1283c8d
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
19 changes: 19 additions & 0 deletions CITATION.cff
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
cff-version: 1.2.0
title: "Coverage.py: The code coverage tool for Python"
message: >-
If you use this software, please cite it using the metadata from this file.
type: software
authors:
- family-names: Batchelder
given-names: Ned
orcid: https://orcid.org/0009-0006-2659-884X
- name: "Contributors to Coverage.py"
repository-code: "https://github.com/nedbat/coveragepy"
url: "https://coverage.readthedocs.io/"
abstract: >-
Coverage.py is a tool for measuring code coverage of Python programs. It monitors your program,
noting which parts of the code have been executed, then analyzes the source to identify code
that could have been executed but was not.
Coverage measurement is typically used to gauge the effectiveness of tests. It can show which
parts of your code are being exercised by tests, and which are not.
license: Apache-2.0
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
# .tar.gz source distribution would give you everything needed to continue
# developing the project. "pip install" will not install many of these files.

include CITATION.cff
include CONTRIBUTORS.txt
include CHANGES.rst
include LICENSE.txt
Expand Down

0 comments on commit 1283c8d

Please sign in to comment.