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