Pipfile 292 B

12345678910111213141516171819
  1. [[source]]
  2. url = "https://pypi.org/simple"
  3. verify_ssl = true
  4. name = "pypi"
  5. [packages]
  6. mariadb = "*"
  7. [dev-packages]
  8. pytest = "*"
  9. black = "*"
  10. prospector = {extras = ["with_bandit"], version = "*"}
  11. [requires]
  12. python_version = "3.10"
  13. [scripts]
  14. fetch = "python tle_fetcher.py"
  15. test = "pytest"