-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit 5e42432
Showing
28 changed files
with
2,640 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
.idea/ | ||
*.pyc | ||
.mypy_cache/ | ||
__pycache__/ | ||
.pyrs990-cache/ | ||
*.ipynb_checkpoints/ | ||
.DS_Store | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
help: | ||
@echo analyze - run the type checker | ||
@echo check - run tests | ||
@echo check-fast - run non-network, non-subprocess tests | ||
@echo format - format the code | ||
|
||
analyze: | ||
pipenv run mypy . tests/ | ||
|
||
check: | ||
pipenv run pytest | ||
|
||
check-fast: | ||
pipenv run pytest -m "not network and not subprocess" | ||
|
||
format: | ||
pipenv run isort --recursive --use-parentheses --trailing-comma -y -w 80 | ||
pipenv run autoflake -r --in-place --remove-unused-variables . | ||
pipenv run black -t py38 -l 80 . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
[[source]] | ||
name = "pypi" | ||
url = "https://pypi.org/simple" | ||
verify_ssl = true | ||
|
||
[dev-packages] | ||
ipython = "*" | ||
pylint = "*" | ||
black = "*" | ||
pytest = "*" | ||
rope = "*" | ||
bandit = "*" | ||
mypy = "*" | ||
isort = "*" | ||
autoflake = "*" | ||
|
||
[packages] | ||
requests = "*" | ||
setuptools = "*" | ||
defusedxml = "*" | ||
|
||
[requires] | ||
python_version = "3.8" | ||
|
||
[pipenv] | ||
allow_prereleases = true |
Oops, something went wrong.