pyproject.toml 486 B

123456789101112131415161718192021222324252627
  1. [tool.poetry]
  2. name = "rckr"
  3. version = "0.1.0"
  4. description = ""
  5. authors = ["Your Name <you@example.com>"]
  6. [tool.poetry.dependencies]
  7. python = "^3.7"
  8. aiohttp = "^3.5"
  9. motor = "^2.0"
  10. ConfigParser = "^3.7"
  11. tox = "^3.8"
  12. bandit = "^1.5"
  13. test = "^2.3"
  14. [tool.poetry.dev-dependencies]
  15. pytest = "^4.2"
  16. pytest-cov = "^2.6"
  17. pytest-flake8 = "^1.0"
  18. pytest-aiohttp = "^0.3.0"
  19. [tool.poetry.scripts]
  20. rckr = "rckr:main"
  21. [build-system]
  22. requires = ["poetry>=0.12"]
  23. build-backend = "poetry.masonry.api"