pyproject.toml 981 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. [tool.poetry]
  2. name = "pysportsdb"
  3. version = "0.1.0"
  4. description = "An simple Python interface to thesportsdb.com's API"
  5. authors = ["Colin Powell <colin@unbl.ink>"]
  6. license = "MIT"
  7. readme = "README.md"
  8. [tool.poetry.dependencies]
  9. python = "^3.7"
  10. [build-system]
  11. requires = ["poetry-core"]
  12. build-backend = "poetry.core.masonry.api"
  13. [tool.poetry.dev-dependencies]
  14. black = "^22.3"
  15. mypy = "^0.961"
  16. pytest = "^7.1"
  17. pytest-black = "^0.3.12"
  18. pytest-cov = "^3.0"
  19. pytest-flake8 = "^1.1"
  20. pytest-isort = "^3.0"
  21. pytest-runner = "^6.0"
  22. types-requests = "^2.27"
  23. bandit = "^1.7.4"
  24. [tool.black]
  25. line-length = 79
  26. target-version = ["py37", "py38"]
  27. include = ".py$"
  28. exclude = "migrations"
  29. [tool.isort]
  30. multi_line_output = 3
  31. include_trailing_comma = true
  32. force_grid_wrap = 0
  33. combine_as_imports = true
  34. [tool.bandit]
  35. exclude_dirs = ["pysportsdb/tests/*"]
  36. [tool.poetry.scripts]
  37. emus = "pysportsdb.cli:main"
  38. [build-system]
  39. requires = ["poetry-core>=1.0.0"]
  40. build-backend = "poetry.core.masonry.api"