6
6
license = " MIT"
7
7
8
8
[tool .poetry .dependencies ]
9
+ python = " 3.9.*"
9
10
django = " ~=3.1.14"
10
- django-distill = " ~=2.9.0"
11
11
django-environ = " ~=0.4.5"
12
12
django-filter = " ~=21.1"
13
- django-prometheus = " ~=2.1"
14
- django-simple-bulma = " ~=2.4"
15
13
djangorestframework = " ~=3.12.0"
16
- gunicorn = " ~=20.0.4"
17
- markdown = " ~=3.3.4"
18
14
psycopg2-binary = " ~=2.8.0"
19
- python = " 3.9.*"
20
- python-frontmatter = " ~=1.0"
21
- pyyaml = " ~=5.1"
15
+ django-simple-bulma = " ~=2.4"
16
+ whitenoise = " ~=5.0"
22
17
requests = " ~=2.21"
18
+ pyyaml = " ~=5.1"
19
+ gunicorn = " ~=20.0.4"
23
20
sentry-sdk = " ~=0.19"
24
- whitenoise = " ~=5.0"
21
+ markdown = " ~=3.3.4"
22
+ python-frontmatter = " ~=1.0"
23
+ django-prometheus = " ~=2.1"
24
+ django-distill = " ~=2.9.0"
25
25
26
26
[tool .poetry .dev-dependencies ]
27
27
coverage = " ~=5.0"
28
- coveralls = " ~=2.1"
29
28
flake8 = " ~=3.7"
30
29
flake8-annotations = " ~=2.0"
31
30
flake8-bandit = " ~=2.1"
@@ -39,18 +38,20 @@ mccabe = "~=0.6.1"
39
38
pep8-naming = " ~=0.9"
40
39
pre-commit = " ~=2.1"
41
40
pyfakefs = " ~=4.5"
42
- python-dotenv = " ~=0.17 .1"
41
+ coveralls = " ~=2 .1"
43
42
taskipy = " ~=1.7.0"
43
+ python-dotenv = " ~=0.17.1"
44
44
45
45
[build-system ]
46
- build-backend = " poetry.core.masonry.api"
47
46
requires = [" poetry-core>=1.0.0" ]
47
+ build-backend = " poetry.core.masonry.api"
48
48
49
49
[tool .taskipy .tasks ]
50
+ start = " python manage.py run --debug"
51
+ makemigrations = " python manage.py makemigrations"
50
52
django_shell = " python manage.py shell"
53
+ test = " coverage run manage.py test"
54
+ report = " coverage report -m"
51
55
lint = " pre-commit run --all-files"
52
- makemigrations = " python manage.py makemigrations"
53
56
precommit = " pre-commit install"
54
- report = " coverage report -m"
55
- start = " python manage.py run --debug"
56
- test = " coverage run manage.py test"
57
+ static = " python manage.py distill-local build --traceback --force"
0 commit comments