pyproject.toml 478 B

123456789101112131415161718192021
  1. [tool.poetry]
  2. name = "set-github-secret"
  3. version = "0.1.0"
  4. description = "set github secret"
  5. authors = ["liuyuqi-dellpc <liuyuqi.gov@msn.cn>"]
  6. readme = "README.md"
  7. license = "Apache-2.0"
  8. exclude = [
  9. "tests",
  10. "docs",
  11. ]
  12. [tool.poetry.dependencies]
  13. python = "^3.11"
  14. requests = "^2.22.0"
  15. [build-system]
  16. requires = ["poetry-core"]
  17. build-backend = "poetry.core.masonry.api"
  18. [tool.poetry.scripts]
  19. sgs = "set_github_secret.set_github_secret.GithubApi:set_update_github_secret"