Skip to content

Commit 1f65a0b

Browse files
authored
Add codemeta.json and CITATION.cff (#139)
* Add CITATION.cff * Add codemeta.json * Remove bumpversion.cfg * Fix bare URL in README
1 parent 4a58fc3 commit 1f65a0b

File tree

4 files changed

+78
-14
lines changed

4 files changed

+78
-14
lines changed

.bumpversion.cfg

Lines changed: 0 additions & 13 deletions
This file was deleted.

CITATION.cff

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
cff-version: 1.2.0
2+
message: "If you use this software in your work, please cite it using the following metadata."
3+
title: "PubChemPy"
4+
type: software
5+
authors:
6+
- family-names: "Swain"
7+
given-names: "Matthew"
8+
orcid: "https://orcid.org/0000-0001-6428-5189"
9+
version: 1.0.4
10+
doi: "10.5281/zenodo.541438"
11+
date-released: "2017-04-11"
12+
repository-code: "https://github.com/mcs07/PubChemPy"
13+
url: "https://pubchempy.org"
14+
repository-artifact: "https://pypi.org/project/PubChemPy/"
15+
license: "MIT"
16+
license-url: "https://spdx.org/licenses/MIT.html"
17+
identifiers:
18+
- type: doi
19+
description: Fixed concept DOI for all versions
20+
value: "10.5281/zenodo.593126"
21+
abstract: Python package for interacting with the PubChem database via the PUG REST API service.
22+
keywords:
23+
- cheminformatics
24+
- chemistry
25+
- API
26+
- python
27+
- pubchem
28+
preferred-citation:
29+
type: software
30+
title: "PubChemPy"
31+
authors:
32+
- family-names: "Swain"
33+
given-names: "Matthew"
34+
orcid: "https://orcid.org/0000-0001-6428-5189"
35+
version: 1.0.4
36+
date-released: "2017-04-11"
37+
doi: "10.5281/zenodo.541438"
38+
url: "https://pubchempy.org"

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ CC(=O)OC1=CC=CC=C1C(=O)O
4242

4343
## Documentation
4444

45-
Full documentation is available at https://docs.pubchempy.org.
45+
Full documentation is available at <https://docs.pubchempy.org>.
4646

4747
This includes a [step-by-step guide on how to use PubChemPy](https://docs.pubchempy.org/en/latest/guide/gettingstarted.html), as well as a [complete API reference](https://docs.pubchempy.org/en/latest/api.html).
4848

codemeta.json

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
{
2+
"@context": "https://w3id.org/codemeta/3.0",
3+
"type": "SoftwareSourceCode",
4+
"applicationCategory": "http://edamontology.org/topic_2258",
5+
"author": [
6+
{
7+
"id": "https://orcid.org/0000-0001-6428-5189",
8+
"type": "Person",
9+
"email": "m.swain@me.com",
10+
"familyName": "Swain",
11+
"givenName": "Matthew"
12+
}
13+
],
14+
"codeRepository": "https://github.com/mcs07/PubChemPy",
15+
"dateCreated": "2013-01-05",
16+
"dateModified": "2017-04-11",
17+
"datePublished": "2014-01-06",
18+
"description": "Python package for interacting with the PubChem database via the PUG REST API service.",
19+
"identifier": "https://doi.org/10.5281/zenodo.541438",
20+
"keywords": [
21+
"cheminformatics",
22+
"chemistry",
23+
"API",
24+
"python",
25+
"pubchem"
26+
],
27+
"license": "https://spdx.org/licenses/MIT",
28+
"name": "PubChemPy",
29+
"programmingLanguage": "Python",
30+
"softwareVersion": "1.0.4",
31+
"continuousIntegration": "https://github.com/mcs07/PubChemPy/actions",
32+
"readme": "https://github.com/mcs07/PubChemPy/blob/main/README.md",
33+
"url": "https://docs.pubchempy.org",
34+
"issueTracker": "https://github.com/mcs07/PubChemPy/issues",
35+
"relatedLink": [
36+
"https://pypi.org/project/PubChemPy/",
37+
"https://docs.pubchempy.org"
38+
]
39+
}

0 commit comments

Comments
 (0)