Pipfile 991 B

1234567891011121314151617181920212223242526
  1. [[source]]
  2. name = "pypi"
  3. url = "https://pypi.org/simple"
  4. verify_ssl = true
  5. [dev-packages]
  6. autopep8 = "*" # Code formatter
  7. flake8 = "*" # Base-linter module
  8. flake8-quotes = "*" # flake8-extension to lint bad quoting
  9. flake8-docstrings = "*" # flake8-ext for strict docstring linting
  10. flake8-builtins = "*" # flake8-ext to check python builtins used as vars etc.
  11. flake8-blind-except = "*" # flake8-ext to catch blind exception catches
  12. flake8-use-fstring = "*" # flake8-ext to enforce f-strings
  13. flake8-isort = "*" # flake8-ext to show isort issues
  14. pep8-naming = "*" # flake8-ext to enforce pep8 naming conventions
  15. isort = "*" # Automated import sorting
  16. pytest = "*" # Python base-testing library
  17. tox = "*" # Automated and standardized testing in Python
  18. rope = "*" # Refactoring library
  19. twine = "*" # Interoperability with pypi.org
  20. mypy = "*" # Optional static type checker
  21. typing_extensions = "*" # Typing extensions for mypy
  22. my_module = {path = ".", editable = true}
  23. [packages]
  24. requests = "*"