-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
- Modified - added requirements - pycharm configuration
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -66,6 +66,10 @@ target/ | |
venv/ | ||
ENV/ | ||
|
||
# Environment variables | ||
.env | ||
env | ||
|
||
# Rope project settings | ||
.ropeproject | ||
|
||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
[MAIN] | ||
load-plugins=pylint-flask-0.6 | ||
|
||
[FORMAT] | ||
max-line-length=120 | ||
|
||
[MESSAGES CONTROL] | ||
disable=missing-docstring,invalid-name | ||
|
||
[DESIGN] | ||
max-parents=13 | ||
|
||
[TYPECHECK] | ||
generated-members=REQUEST,acl_users,aq_parent,"[a-zA-Z]+_set{1,2}",save,delete |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
Aditya Raman |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
pytz==2020.1 # https://github.com/stub42/pytz | ||
python-slugify==4.0.1 # https://github.com/un33k/python-slugify | ||
Pillow==7.2.0 # https://github.com/python-pillow/Pillow | ||
argon2-cffi==20.1.0 # https://github.com/hynek/argon2_cffi | ||
|
||
# Flask | ||
# ------------------------------------------------------------------------------ | ||
click==7.1.2 # https://github.com/pallets/click | ||
Flask==1.1.2 # https://github.com/pallets/Flask | ||
itsdangerous==1.1.0 # https://github.com/pallets/itsdangerous | ||
Jinja2==2.11.2 # https://github.com/pallets/jinja | ||
MarkupSafe==1.1.1 # https://github.com/pallets/markupsafe | ||
Werkzeug==1.0.1 # https://github.com/pallets/werkzeug |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
-r ./base.txt | ||
|
||
ipdb==0.13.4 # https://github.com/gotcha/ipdb | ||
Sphinx==3.2.1 # https://github.com/sphinx-doc/sphinx | ||
psycopg2-binary==2.8.6 # https://github.com/psycopg/psycopg2 | ||
|
||
# Testing | ||
# ------------------------------------------------------------------------------ | ||
mypy==0.782 # https://github.com/python/mypy | ||
pytest==6.1.1 # https://github.com/pytest-dev/pytest | ||
pytest-sugar==0.9.4 # https://github.com/Frozenball/pytest-sugar | ||
|
||
# Code quality | ||
# ------------------------------------------------------------------------------ | ||
flake8==3.8.4 # https://github.com/PyCQA/flake8 | ||
coverage==5.3 # https://github.com/nedbat/coveragepy | ||
black==20.8b1 # https://github.com/ambv/black | ||
pylint-flask==0.6 # https://github.com/jschaf/pylint-flask | ||
pre-commit==2.7.1 # https://github.com/pre-commit/pre-commit |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
-r ./base.txt | ||
|
||
gunicorn==20.0.4 # https://github.com/benoitc/gunicorn | ||
# psycopg2==2.8.4 --no-binary psycopg2 # https://github.com/psycopg/psycopg2 | ||
sentry-sdk==0.14.1 # https://github.com/getsentry/sentry-python |