diff options
author | 2021-05-17 18:04:16 +0100 | |
---|---|---|
committer | 2021-05-17 18:04:30 +0100 | |
commit | e9f6501fb6c32e60f717ed523e770ca90b037d1d (patch) | |
tree | 4222d5e1d180c7cfc71bfb18b7b68775bf1d1902 /Pipfile | |
parent | Merge pull request #504 from doublevcodes/patch-1 (diff) |
Replace pipenv with poetry
Including the pre-commit config here too, so I can actually lint
Diffstat (limited to 'Pipfile')
-rw-r--r-- | Pipfile | 49 |
1 files changed, 0 insertions, 49 deletions
diff --git a/Pipfile b/Pipfile deleted file mode 100644 index 94d9cf43..00000000 --- a/Pipfile +++ /dev/null @@ -1,49 +0,0 @@ -[[source]] -name = "pypi" -url = "https://pypi.org/simple" -verify_ssl = true - -[packages] -django = "~=3.0.4" -django-environ = "~=0.4.5" -django-filter = "~=2.1.0" -django-hosts = "~=4.0" -djangorestframework = "~=3.11.0" -psycopg2-binary = "~=2.8" -django-simple-bulma = "~=2.1" -whitenoise = "~=5.0" -requests = "~=2.21" -pyyaml = "~=5.1" -gunicorn = "~=20.0.4" -sentry-sdk = "~=0.19" -markdown = "~=3.3.4" -python-frontmatter = "~=1.0" - -[dev-packages] -coverage = "~=5.0" -flake8 = "~=3.7" -flake8-annotations = "~=2.0" -flake8-bandit = "~=2.1" -flake8-bugbear = "~=20.1" -flake8-docstrings = "~=1.5" -flake8-import-order = "~=0.18" -flake8-string-format = "~=0.3" -flake8-tidy-imports = "~=4.0" -flake8-todo = "~=0.7" -mccabe = "~=0.6.1" -pep8-naming = "~=0.9" -pre-commit = "~=2.1" -pyfakefs = "~=4.4.0" -coveralls = "~=2.1" - -[requires] -python_version = "3.8" - -[scripts] -start = "python manage.py run --debug" -makemigrations = "python manage.py makemigrations" -django_shell = "python manage.py shell" -test = "coverage run manage.py test" -report = "coverage report -m" -lint = "pre-commit run --all-files" -precommit = "pre-commit install" |