-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpyproject.toml
45 lines (41 loc) · 1.02 KB
/
pyproject.toml
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
35
36
37
38
39
40
41
42
43
44
45
[tool.poetry]
authors = ["Francisco Ceruti <[email protected]>"]
description = "Opinionated boilerplate for Django projects."
license = "MIT License"
name = "django-starter-project"
packages = [
{include = "apps/**/*.py"},
{include = "conf/**/*.py"},
]
version = "0.2.0"
[tool.poetry.scripts]
makemigrations = "scripts:makemigrations"
migrate = "scripts:migrate"
server = "scripts:server"
shell = "scripts:shell"
tests = "scripts:tests"
worker = "scripts:worker"
[tool.poetry.dependencies]
celery = "^4.4.0"
django = ">=2.2.13"
django-environ = "^0.4.5"
django-extensions = "^2.2.6"
django-storages = "^1.8"
django-webpack-loader = "^0.6.0"
psycopg2-binary = "^2.8.4"
python = "^3.6"
redis = "^3.3.11"
sentry-sdk = "^0.14.1"
[tool.poetry.dev-dependencies]
Werkzeug = "^0.16.0"
black = "^19.10b0"
django-debug-toolbar = "^2.1"
flake8 = "^3.8.1"
pylint = "^2.5.0"
pylint-django = "^2.0.15"
pytest = "^5.3.4"
pytest-django = "^3.8.0"
pytest-env = "^0.6.2"
[build-system]
build-backend = "poetry.masonry.api"
requires = ["poetry>=0.12"]