pyproject.toml 472 B

1234567891011121314151617181920212223242526
  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. [tool.poetry.dev-dependencies]
  14. pytest = "^4.2"
  15. pytest-cov = "^2.6"
  16. pytest-flake8 = "^1.0"
  17. pytest-aiohttp = "^0.3.0"
  18. [tool.poetry.scripts]
  19. rckr = "rckr:main"
  20. [build-system]
  21. requires = ["poetry>=0.12"]
  22. build-backend = "poetry.masonry.api"