diff options
author | 2023-01-16 20:49:01 +0000 | |
---|---|---|
committer | 2023-02-27 23:57:52 +0000 | |
commit | 8fb13c0c4c4bb7983a3ab0b6fc7abe89250b50a3 (patch) | |
tree | e161dcb0580beaef8688571ac3ab67a131f43756 /pyproject.toml | |
parent | Merge pull request #882 from Ibrahim2750mi/contributing/sir-lancebot-description (diff) |
Update pyproject.toml to use dependancy groups
Diffstat (limited to 'pyproject.toml')
-rw-r--r-- | pyproject.toml | 33 |
1 files changed, 19 insertions, 14 deletions
diff --git a/pyproject.toml b/pyproject.toml index 41d0fff7..111ef464 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,26 +7,30 @@ license = "MIT" [tool.poetry.dependencies] python = "3.10.*" + django = "4.1.7" +django-distill = "3.0.2" django-environ = "0.9.0" django-filter = "22.1" -djangorestframework = "3.14.0" -psycopg2-binary = "2.9.5" +django-prometheus = "2.2.0" django-simple-bulma = "2.5.0" -whitenoise = "6.4.0" -httpx = "0.23.3" -pyyaml = "6.0" +djangorestframework = "3.14.0" gunicorn = "20.1.0" -sentry-sdk = "1.15.0" +httpx = "0.23.3" markdown = "3.4.1" -python-frontmatter = "1.0.0" -django-prometheus = "2.2.0" -django-distill = "3.0.2" +psycopg2-binary = "2.9.5" PyJWT = {version = "2.6.0", extras = ["crypto"]} pymdown-extensions = "9.9.2" +python-frontmatter = "1.0.0" +pyyaml = "6.0" +sentry-sdk = "1.16.0" +whitenoise = "6.4.0" -[tool.poetry.dev-dependencies] -coverage = "7.2.1" +[tool.poetry.group.dev.dependencies] +python-dotenv = "1.0.0" +taskipy = "1.10.3" + +[tool.poetry.group.lint.dependencies] flake8 = "6.0.0" flake8-annotations = "3.0.0" flake8-bandit = "4.1.1" @@ -38,12 +42,13 @@ flake8-string-format = "0.3.0" flake8-todo = "0.7" pep8-naming = "0.13.3" pre-commit = "3.1.0" + +[tool.poetry.group.test.dependencies] +coverage = "7.2.1" pyfakefs = "5.1.0" -taskipy = "1.10.3" -python-dotenv = "1.0.0" [build-system] -requires = ["poetry-core>=1.0.0"] +requires = ["poetry-core>=1.2.0"] build-backend = "poetry.core.masonry.api" [tool.taskipy.tasks] |