updated auth token handling using new users api.

This commit is contained in:
2023-12-07 14:46:57 +09:00
parent ac34a26b02
commit f10b42a1f2
9 changed files with 73 additions and 37 deletions

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "mdrs-client-python"
version = "1.2.0"
version = "1.3.0"
description = "The mdrs-client-python is python library and a command-line client for up- and downloading files to and from MDRS based repository."
authors = ["Yoshihiro OKUMURA <yoshihiro.okumura@riken.jp>"]
license = "MIT"
@ -24,17 +24,17 @@ packages = [
python = "^3.10"
requests = "^2.31.0"
python-dotenv = "^1.0.0"
pydantic = "^2.4.2"
pydantic-settings = "^2.0.3"
pydantic = "^2.5.2"
pydantic-settings = "^2.1.0"
PyJWT = "^2.8.0"
validators = "^0.22.0"
[tool.poetry.group.dev.dependencies]
black = "^23.9.1"
black = "^23.11.0"
flake8 = "^6.1.0"
Flake8-pyproject = "^1.2.3"
isort = "^5.12.0"
pyright = "^1.1.329"
pyright = "^1.1.339"
[tool.poetry.scripts]
mdrs = 'mdrsclient.__main__:main'