|
|
|
[[source]]
|
|
|
|
url = "https://pypi.python.org/simple"
|
|
|
|
verify_ssl = true
|
|
|
|
name = "pypi"
|
|
|
|
|
|
|
|
[packages]
|
|
|
|
# Flask
|
|
|
|
Flask = "==1.1.1"
|
|
|
|
Werkzeug = "==0.16.0"
|
|
|
|
click = ">=5.0"
|
|
|
|
|
|
|
|
# Database
|
|
|
|
Flask-SQLAlchemy = "==2.4.1"
|
|
|
|
SQLAlchemy = "==1.3.9"
|
|
|
|
|
|
|
|
# Migrations
|
|
|
|
Flask-Migrate = "==2.5.2"
|
|
|
|
|
|
|
|
# Forms
|
|
|
|
Flask-WTF = "==0.14.2"
|
|
|
|
WTForms = "==2.2.1"
|
|
|
|
|
|
|
|
# Deployment
|
|
|
|
gevent = "==1.4.0"
|
|
|
|
gunicorn = ">=19.1.1"
|
|
|
|
supervisor = "==4.0.4"
|
|
|
|
|
|
|
|
# Webpack
|
|
|
|
flask-webpack = "==0.1.0"
|
|
|
|
|
|
|
|
# Auth
|
|
|
|
Flask-Login = "==0.4.1"
|
|
|
|
Flask-Bcrypt = "==0.7.1"
|
|
|
|
|
|
|
|
# Caching
|
|
|
|
Flask-Caching = ">=1.0.0"
|
|
|
|
|
|
|
|
# Debug toolbar
|
|
|
|
Flask-DebugToolbar = "==0.10.1"
|
|
|
|
|
|
|
|
# Environment variable parsing
|
|
|
|
environs = "==6.0.0"
|
|
|
|
|
|
|
|
[dev-packages]
|
|
|
|
# Testing
|
|
|
|
pytest = "==5.2.1"
|
|
|
|
WebTest = "==2.0.33"
|
|
|
|
factory-boy = "==2.12.*"
|
|
|
|
pdbpp = "==0.10.2"
|
|
|
|
|
|
|
|
# Lint and code style
|
|
|
|
black = "==19.3b0"
|
|
|
|
flake8 = "==3.7.8"
|
|
|
|
flake8-blind-except = "==0.1.1"
|
|
|
|
flake8-debugger = "==3.1.0"
|
|
|
|
flake8-docstrings = "==1.5.0"
|
|
|
|
flake8-isort = "==2.7.0"
|
|
|
|
isort = "==4.3.21"
|
Bump pep8-naming from 0.8.0 to 0.8.2 in /{{cookiecutter.app_name}} (#424)
Bumps [pep8-naming](https://github.com/PyCQA/pep8-naming) from 0.8.0 to 0.8.2.
<details>
<summary>Changelog</summary>
*Sourced from [pep8-naming's changelog](https://github.com/PyCQA/pep8-naming/blob/master/CHANGELOG.rst).*
> 0.8.2 - 2019-02-04
> ------------------
>
> * Fix a problem with ``ignore-names`` option initialization.
>
> 0.8.1 - 2019-02-04
> ------------------
>
> * ``ignore-names`` now also applies to the N806, N815, and N816 checks.
>
> * ``failureException``, ``longMessage``, and ``maxDiff`` have been added to
> the default ``ignore-names`` list.
>
> * Allow lowercase names to be imported as just ``_``.
>
> * Allow function arguments to be named just ``_``.
>
> * Support Python 2's tuple syntax in ``except`` clauses.
</details>
<details>
<summary>Commits</summary>
- [`7654783`](https://github.com/PyCQA/pep8-naming/commit/76547834f25529af6e67f13141cebb671d1e3537) Merge pull request [#111](https://github-redirect.dependabot.com/PyCQA/pep8-naming/issues/111) from jparise/ignore-names-default
- [`3401bd1`](https://github.com/PyCQA/pep8-naming/commit/3401bd1e83ff14131426399dc013e9860894ee8c) Test --ignore-names for relevant error codes
- [`743b26c`](https://github.com/PyCQA/pep8-naming/commit/743b26c964cd5032776c85b75610a3a329ae23cc) Fix ignore-names option initialization
- [`2d0e538`](https://github.com/PyCQA/pep8-naming/commit/2d0e53885cec7c8af5957849cf4b06c9e0bbb111) Merge pull request [#108](https://github-redirect.dependabot.com/PyCQA/pep8-naming/issues/108) from jparise/setup-check-rest
- [`dadf0af`](https://github.com/PyCQA/pep8-naming/commit/dadf0afcba902a2542123a958bc62889af0fd5f2) Merge pull request [#107](https://github-redirect.dependabot.com/PyCQA/pep8-naming/issues/107) from jparise/0.8.1-changelog
- [`a71425b`](https://github.com/PyCQA/pep8-naming/commit/a71425b57660c767534cd36687f8bb03ba4c7eaf) Check reStructuredText syntax along with flake8
- [`a7c1539`](https://github.com/PyCQA/pep8-naming/commit/a7c1539add8550eb6529e7b4f81246845b687c96) Prepare the changelog for the 0.8.1 release
- [`3b10510`](https://github.com/PyCQA/pep8-naming/commit/3b10510d3c7ab11a333442651b061ded125216e6) Merge pull request [#105](https://github-redirect.dependabot.com/PyCQA/pep8-naming/issues/105) from jparise/function-type
- [`67294f0`](https://github.com/PyCQA/pep8-naming/commit/67294f00b2b9efdcd79b2b187221b0e8ae64e852) Consistently use the _FunctionType constants
- [`9596c43`](https://github.com/PyCQA/pep8-naming/commit/9596c4338b3ed6620375581632a0632838a74a22) Merge pull request [#100](https://github-redirect.dependabot.com/PyCQA/pep8-naming/issues/100) from jparise/excepthandler-tuple
- Additional commits viewable in [compare view](https://github.com/PyCQA/pep8-naming/compare/0.8.0...0.8.2)
</details>
<br />
[![Dependabot compatibility score](https://api.dependabot.com/badges/compatibility_score?dependency-name=pep8-naming&package-manager=pip&previous-version=0.8.0&new-version=0.8.2)](https://dependabot.com/compatibility-score.html?dependency-name=pep8-naming&package-manager=pip&previous-version=0.8.0&new-version=0.8.2)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`.
[//]: # (dependabot-automerge-start)
Dependabot will **not** automatically merge this PR because this dependency is pre-1.0.0.
[//]: # (dependabot-automerge-end)
---
<details>
<summary>Dependabot commands and options</summary>
<br />
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
Finally, you can contact us by mentioning @dependabot.
</details>
6 years ago
|
|
|
pep8-naming = "==0.8.2"
|