選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

27 行
565 B

  1. [tool.poetry]
  2. name = "res-levis-api-client"
  3. version = "1.0.2"
  4. description = "A client library for accessing RES LEVIS API"
  5. authors = []
  6. readme = "README.md"
  7. packages = [
  8. { include = "res_levis_api_client" },
  9. ]
  10. include = ["CHANGELOG.md", "res_levis_api_client/py.typed"]
  11. [tool.poetry.dependencies]
  12. python = "^3.9"
  13. httpx = ">=0.23.0,<0.29.0"
  14. attrs = ">=22.2.0"
  15. python-dateutil = "^2.8.0"
  16. [build-system]
  17. requires = ["poetry-core>=2.0.0,<3.0.0"]
  18. build-backend = "poetry.core.masonry.api"
  19. [tool.ruff]
  20. line-length = 120
  21. [tool.ruff.lint]
  22. select = ["F", "I", "UP"]