-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from NYU-CI/pypiprep
PyPi 1.0.2 release
- Loading branch information
Showing
3 changed files
with
31 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,26 @@ | ||
# `richcontext.scholapi` changelog | ||
|
||
## 1.0.2 | ||
|
||
2019-12-15 | ||
|
||
- added publication search and title search for Crossref, PubMed, SSRN | ||
- improved defensive handling for: connection errors, null responses to API calls, returned error messages | ||
- reduced Dimensions API excessive log statements (due to repeated logins) | ||
- resolved errors in handling responses from EuropePMC | ||
|
||
|
||
## 1.0.1 | ||
|
||
2019-11-30 | ||
|
||
### Fixed | ||
|
||
* EuropePMC: resolved edge case where returned titles could be null, causing exceptions | ||
- EuropePMC: resolved edge case where returned titles could be null, causing exceptions | ||
|
||
|
||
## 1.0.0 | ||
|
||
2019-11-23 | ||
|
||
### Initial | ||
|
||
* first release on PyPi | ||
* supports `title_search()` and `publication_lookup()` using several discovery APIs for Scholarly Infrastructure | ||
* aligned with Community session goals from 2019 Rich Context Workshop (notes by Samuel Klein) | ||
- first release on PyPi | ||
- supports `title_search()` and `publication_lookup()` using several discovery APIs for Scholarly Infrastructure | ||
- aligned with Community session goals from 2019 Rich Context Workshop (notes by Samuel Klein) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,10 +5,9 @@ | |
|
||
setup( | ||
name="richcontext-scholapi", | ||
version="1.0.1", | ||
author="Coleridge Initiative", | ||
author_email="[email protected]", | ||
description="Rich Context API integrations for federating metadata discovery and exchange across multiple scholarly infrastructure providers", | ||
description="Rich Context API integrations for federating discovery services and metadata exchange across multiple scholarly infrastructure providers", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/NYU-CI/RCApi", | ||
|
@@ -29,11 +28,15 @@ | |
python_requires=">=3.5", | ||
install_requires=[ | ||
"beautifulsoup4", | ||
"biopython", | ||
"crossref-commons", | ||
"dimcli", | ||
"requests", | ||
"requests-cache", | ||
"selenium", | ||
"xmltodict", | ||
], | ||
keywords="DOI, RePEc, Rich Context, discovery, federated API, federated metadata, knowledge graph, metadata API, metadata exchange, metadata, persistent identifiers, research publication ontology, research publications, scholarly infrastructure, scholarly metadata, scholarly publishing", | ||
keywords="Rich Context, DOI, RePEc, PubMed, Crossref, Dimensions, EuropePMC, OpenAIRE, Unpaywall, dissemin, Semantic Scholar, discovery, discovery service, federated API, federated metadata, knowledge graph, metadata API, metadata exchange, metadata, persistent identifiers, research publication ontology, research publications, scholarly infrastructure, scholarly metadata, scholarly publishing", | ||
license="MIT", | ||
include_package_data=True, | ||
zip_safe=False | ||
|