Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add CITATION.cff #1641

Merged
merged 3 commits into from
Jun 13, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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