-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (31 loc) · 843 Bytes
/
pyproject.toml
File metadata and controls
34 lines (31 loc) · 843 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[tool.poetry]
name = "pythonprodjango"
version = "0.1.0"
description = "Módulo de Django - Curso Python Pro"
authors = ["Herbety Paulo <herbetyp@gmail.com>"]
license = "AGPL-3.0-or-later"
[tool.poetry.dependencies]
python = "^3.8"
django = "^3.0.8"
gunicorn = "^20.0.4"
python-decouple = "^3.3"
dj-database-url = "^0.5.0"
psycopg2-binary = "^2.8.5"
django-s3-folder-storage = "^0.5"
collectfast = "^2.2.0"
sentry-sdk = "^0.16.2"
django-ordered-model = "^3.4.1"
ipython = "^7.18.1"
django-extensions = "^3.0.9"
[tool.poetry.dev-dependencies]
flake8 = "^3.8.3"
pytest-django = "^3.9.0"
pytest-cov = "^2.10.0"
codecov = "^2.1.8"
pre-commit = "^2.6.0"
model-bakery = "^1.1.1"
django-debug-toolbar = "^2.2"
black = {version = "^19.10b0", allow-prereleases = true}
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"