pyproject.toml 680 B

1234567891011121314151617181920212223
  1. [tool.poetry]
  2. name = "jm-hypermodern-python"
  3. version = "0.1.0"
  4. description = "A hypermodern python project"
  5. authors = ["john melesky <code@phaedrusdeinus.org>"]
  6. license = "MIT"
  7. readme = "README.md"
  8. packages = [{include = "jm_hypermodern_python"}]
  9. homepage = "https://code.phaedrusdeinus.org/jmelesky/jm-hypermodern-python"
  10. repository = "https://code.phaedrusdeinus.org/jmelesky/jm-hypermodern-python"
  11. keywords = ["hypermodern"]
  12. [tool.poetry.dependencies]
  13. python = "^3.10"
  14. click = "^8.1.3"
  15. requests = "^2.28.1"
  16. [tool.poetry.scripts]
  17. jm-hypermodern-python = "jm_hypermodern_python.console:main"
  18. [build-system]
  19. requires = ["poetry-core"]
  20. build-backend = "poetry.core.masonry.api"