-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
78da80c
commit 0da841d
Showing
16 changed files
with
160 additions
and
496 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,9 @@ | ||
install: | ||
pip install --upgrade pip &&\ | ||
pip install -r requirements.txt | ||
|
||
lint: | ||
pylint --disable=R,C src/call_scopus.py | ||
pylint --disable=R,C scopus_caller/call_scopus.py | ||
pylint --disable=R,C scopus_caller/call_semanticscholar.py | ||
|
||
format: | ||
black *.py | ||
|
||
test: | ||
python -m pytest -vv src/test_call_scopus.py | ||
python tests/test_call_scopus.py |
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
Empty file.
Empty file.
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" |
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,9 +1,10 @@ | ||
aiohttp | ||
numpy | ||
pandas | ||
requests | ||
pytest | ||
click | ||
pylint | ||
black | ||
pytest-cov | ||
aiohttp>=3.8.5 | ||
numpy>=1.24.0 | ||
pandas>=2.0.2 | ||
requests>=2.31.0 | ||
pytest>=7.4.2 | ||
click>=8.1.5 | ||
pylint>=3.0.1 | ||
black>=23.10.0 | ||
nest-asyncio>=1.5.8 | ||
pytest-cov>=4.1.0 |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
from .call_scopus import get_titles | ||
from .call_semanticscholar import get_abstracts |
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
Oops, something went wrong.