pyproject.toml 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. requests = "^2.28.2"
  11. mock = "^5.0.1"
  12. [tool.poetry.dev-dependencies]
  13. black = "^22.3"
  14. mypy = "^0.961"
  15. pytest = "^7.1"
  16. pytest-black = "^0.3.12"
  17. pytest-cov = "^3.0"
  18. pytest-flake8 = "^1.1"
  19. pytest-isort = "^3.0"
  20. pytest-runner = "^6.0"
  21. types-requests = "^2.27"
  22. bandit = "^1.7.4"
  23. requests-mock = "^1.10.0"
  24. [pytest]
  25. log_format = "%(asctime)s %(levelname)s %(message)s"
  26. log_date_format = "%Y-%m-%d %H:%M:%S"
  27. [tool.black]
  28. line-length = 79
  29. target-version = ["py37", "py38"]
  30. include = ".py$"
  31. exclude = "migrations"
  32. [tool.isort]
  33. multi_line_output = 3
  34. include_trailing_comma = true
  35. force_grid_wrap = 0
  36. combine_as_imports = true
  37. [tool.bandit]
  38. exclude_dirs = ["pysportsdb/tests/*"]
  39. #[tool.poetry.scripts]
  40. #pysportsdb = "pysportsdb.cli:main"
  41. [build-system]
  42. requires = ["poetry-core>=1.0.0"]
  43. build-backend = "poetry.core.masonry.api"