Skip to content

Commit

Permalink
No issue: Bump version, update README, move click dependency from dev…
Browse files Browse the repository at this point in the history
… to regular
  • Loading branch information
reckart committed Mar 19, 2024
1 parent 0f24b69 commit 87da57e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ you can still install it using pip directly from this GitHub repository
using the following command:

``` shell
$ pip install -U git+https://github.com/inception-project/inception-cli.git
$ pip install inception-cli
```

## Prepare INCEpTION to be able to use the Remote API
Expand Down Expand Up @@ -110,9 +110,9 @@ Lists the projects.
- click on **Save**
- Export all projects from WebAnno using inception-cli
- install inception-cli
``` shell
$ pip install -U git+https://github.com/inception-project/inception-cli.git
```
``` shell
$ pip install -U git+https://github.com/inception-project/inception-cli.git
```
- export all projects from WebAnno (replace WEBANNO_URL and WEBANNO_REMOTE_API_USERNAME with the url of your WebAnno instance and the name of the user created in step 2.)
``` shell
$ inception-cli project export -u WEBANNO_URL -U WEBANNO_REMOTE_API_USERNAME --regex '.*'
Expand All @@ -133,6 +133,6 @@ Lists the projects.
- click on **Save**
- Import all exported projects to INCEpTION using inception-cli (replace WEBANNO_URL and WEBANNO_REMOTE_API_USERNAME with the url of your WebAnno instance and the name of the user created in step 2)
- make sure the folder does not contain any zip-files which are no exported WebAnno-projects
``` shell
$ inception-cli project import -u INCEPTION_URL -U INCEPTION_REMOTE_API_USERNAME --regex '*.zip'
```
``` shell
$ inception-cli project import -u INCEPTION_URL -U INCEPTION_REMOTE_API_USERNAME --regex '*.zip'
```
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "inception-cli"
version = "0.1.0"
version = "0.1.1-dev"
readme = "README.md"
# homepage = "https://github.com/inception-project/inception-cli"
repository = "https://github.com/inception-project/inception-cli"
Expand All @@ -16,6 +16,7 @@ packages = [

[tool.poetry.dependencies]
python = "^3.8"
click = "8.1.7"

[tool.poetry.dev-dependencies]
pytest = "^7.2"
Expand All @@ -28,7 +29,6 @@ mkdocs = "^1.0"
pytest-cov = "^3.0"
codecov = "^2.1"
bump2version = "^0.5.11"
click = "8.1.7"

[tool.poetry.group.dev.dependencies]
Jinja2 = "^3.1.3"
Expand Down

0 comments on commit 87da57e

Please sign in to comment.