init commit
This commit is contained in:
commit
6da103b148
128 changed files with 3959 additions and 0 deletions
20
requirements/base.txt
Normal file
20
requirements/base.txt
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
pytz==2019.2 # https://github.com/stub42/pytz
|
||||
python-slugify==3.0.3 # https://github.com/un33k/python-slugify
|
||||
Pillow==6.1.0 # https://github.com/python-pillow/Pillow
|
||||
rcssmin==1.0.6 # https://github.com/ndparker/rcssmin
|
||||
argon2-cffi==19.1.0 # https://github.com/hynek/argon2_cffi
|
||||
redis==3.3.8 # https://github.com/antirez/redis
|
||||
|
||||
# Django
|
||||
# ------------------------------------------------------------------------------
|
||||
django==2.2.5 # pyup: < 3.0 # https://www.djangoproject.com/
|
||||
django-environ==0.4.5 # https://github.com/joke2k/django-environ
|
||||
django-model-utils==3.2.0 # https://github.com/jazzband/django-model-utils
|
||||
django-allauth==0.40.0 # https://github.com/pennersr/django-allauth
|
||||
django-crispy-forms==1.7.2 # https://github.com/django-crispy-forms/django-crispy-forms
|
||||
django-compressor==2.3 # https://github.com/django-compressor/django-compressor
|
||||
django-redis==4.10.0 # https://github.com/niwinz/django-redis
|
||||
|
||||
# Django REST Framework
|
||||
djangorestframework==3.10.2 # https://github.com/encode/django-rest-framework
|
||||
coreapi==2.3.3 # https://github.com/core-api/python-client
|
||||
28
requirements/local.txt
Normal file
28
requirements/local.txt
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
-r ./base.txt
|
||||
|
||||
Werkzeug==0.14.1 # pyup: < 0.15 # https://github.com/pallets/werkzeug
|
||||
ipdb==0.12.2 # https://github.com/gotcha/ipdb
|
||||
Sphinx==2.2.0 # https://github.com/sphinx-doc/sphinx
|
||||
psycopg2==2.8.3 --no-binary psycopg2 # https://github.com/psycopg/psycopg2
|
||||
|
||||
# Testing
|
||||
# ------------------------------------------------------------------------------
|
||||
mypy==0.720 # https://github.com/python/mypy
|
||||
pytest==5.1.1 # https://github.com/pytest-dev/pytest
|
||||
pytest-sugar==0.9.2 # https://github.com/Frozenball/pytest-sugar
|
||||
|
||||
# Code quality
|
||||
# ------------------------------------------------------------------------------
|
||||
flake8==3.7.8 # https://github.com/PyCQA/flake8
|
||||
coverage==4.5.4 # https://github.com/nedbat/coveragepy
|
||||
black==19.3b0 # https://github.com/ambv/black
|
||||
pylint-django==2.0.11 # https://github.com/PyCQA/pylint-django
|
||||
|
||||
# Django
|
||||
# ------------------------------------------------------------------------------
|
||||
factory-boy==2.12.0 # https://github.com/FactoryBoy/factory_boy
|
||||
|
||||
django-debug-toolbar==2.0 # https://github.com/jazzband/django-debug-toolbar
|
||||
django-extensions==2.2.1 # https://github.com/django-extensions/django-extensions
|
||||
django-coverage-plugin==1.6.0 # https://github.com/nedbat/django_coverage_plugin
|
||||
pytest-django==3.5.1 # https://github.com/pytest-dev/pytest-django
|
||||
11
requirements/production.txt
Normal file
11
requirements/production.txt
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
# PRECAUTION: avoid production dependencies that aren't in development
|
||||
|
||||
-r ./base.txt
|
||||
|
||||
gunicorn==19.9.0 # https://github.com/benoitc/gunicorn
|
||||
psycopg2==2.8.3 --no-binary psycopg2 # https://github.com/psycopg/psycopg2
|
||||
Collectfast==1.0.0 # https://github.com/antonagestam/collectfast
|
||||
|
||||
# Django
|
||||
# ------------------------------------------------------------------------------
|
||||
django-anymail[mailgun]==6.1.0 # https://github.com/anymail/django-anymail
|
||||
Loading…
Add table
Add a link
Reference in a new issue