Skip to content

Commit

Permalink
Added the extras required for the installation instruction of all plu…
Browse files Browse the repository at this point in the history
…gins. Improved the readme. Increase the version.
  • Loading branch information
muzgash committed Aug 16, 2023
1 parent 81222f8 commit a3015ab
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 4 deletions.
23 changes: 21 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,22 @@ Take a look on plugins examples in the repository
https://github.com/colav/Kahi_plugins

List of available plugins:
·* kahi_scimago_sources
.* kahi_doaj_sources

* kahi_doaj_sources
* kahi_minciencias_opendata_affiliations
* kahi_minciencias_opendata_person
* kahi_openalex_person
* kahi_openalex_sources
* kahi_openalex_subjects
* kahi_ror_affiliations
* kahi_scienti_affiliations
* kahi_scienti_person
* kahi_scienti_sources
* kahi_scimago_sources
* kahi_staff_udea_affiliations
* kahi_staff_udea_person
* kahi_wikipedia_affiliations
* kahi_works

## Installation

Expand All @@ -29,6 +43,11 @@ pip install plugin-name
```
Replace plugin-name with the name of the desired plugin.

If the user wants to install all available plugins run:
```shell
pip install kahi[all]
```


# Usage

Expand Down
2 changes: 1 addition & 1 deletion kahi/_version.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# flake8: noqa
__version__ = '0.0.1-alpha'
__version__ = '0.0.2-alpha'


def get_version():
Expand Down
21 changes: 20 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,26 @@ def main():
# Dependent packages (distributions)
install_requires=[
"pyyaml"
]
],
extras_require={
'all': [
'kahi_doaj_sources',
'kahi_minciencias_opendata_affiliations',
'kahi_minciencias_opendata_person',
'kahi_openalex_person',
'kahi_openalex_sources',
'kahi_openalex_subjects',
'kahi_ror_affiliations',
'kahi_scienti_affiliations',
'kahi_scienti_person',
'kahi_scienti_sources',
'kahi_scimago_sources',
'kahi_staff_udea_affiliations',
'kahi_staff_udea_person',
'kahi_wikipedia_affiliations',
'kahi_works'
]
}
)


Expand Down

0 comments on commit a3015ab

Please sign in to comment.