Created
September 14, 2020 10:47
-
-
Save hwalinga/21d833d0a3b6ca7a8724698df4736349 to your computer and use it in GitHub Desktop.
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
[tool.poetry] | |
name = "demap" | |
version = "0.1.0" | |
description = "Measure and plot" | |
authors = ["Hielke Walinga"] | |
[tool.poetry.dependencies] | |
python = "^3.7" | |
django = "^2.2.13" | |
django-filter = "^2.2.0" | |
django-npm = "^1.0.0" | |
djangorestframework = "^3.11.0" | |
djangorestframework-simplejwt = "*" | |
markdown = "^3.2.1" | |
matplotlib = "^3.3.0" | |
numpy = "^1.19.0" | |
scipy = "^1.4.1" | |
mod_wsgi = {version = "^4.7.1", platform = "linux"} | |
psycopg2 = {version = "^2.8.4", platform = "linux"} | |
psycopg2-binary = {version = "^2.8.4", platform = "win32"} | |
django-reset-migrations = "^0.4.0" | |
django-admin-numeric-filter = "*" | |
drf-yasg = "^1.17.1" | |
djangorestframework-csv = "^2.1.0" | |
django-extensions = "^3.0.5" | |
docutils = "^0.16" | |
quantulum3 = "^0.7.5" | |
pint = "^0.15" | |
[tool.poetry.dependencies.django-computedfields] | |
git = "https://github.com/netzkolchose/django-computedfields" | |
[tool.poetry.dev-dependencies] | |
autopep8 = "^1.5.3" | |
flake8 = "^3.7.9" | |
mypy = "0.770" | |
pytest-cov = "^2.8.1" | |
pytest-django = "^3.8.0" | |
pylint-django = "^2.0.15" | |
pylint = "^2.5.3" | |
isort = "^4.3.21" | |
django-stubs = "^1.5.0" | |
[tool.pylint.format] | |
max-line-length = "120" | |
[tool.pylint.master] | |
load-plugins = ["pylint_django"] | |
[tool.pylint.messages_control] | |
disable = """ | |
invalid-name,C0326 | |
""" | |
[build-system] | |
requires = ["poetry>=0.12"] | |
build-backend = "poetry.masonry.api" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment