-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
75 lines (71 loc) · 2.89 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[tool.poetry]
name = "app"
version = "0.1.0"
description = "Tari Kitchen Django website running on AWS"
authors = ["Guillaume Bournique <gbournique@gmail.com>"]
repository = "https://github.com/gbourniq/django-on-aws"
readme = "README.md"
keywords = ["portfolio"]
[tool.poetry.dependencies]
awscli = "^1.18.197" # Apache 2.0
boto3 = "^1.12.39" # Apache 2.0
django = "^3" # BSD
django-debug-toolbar = "^3.2" # BSD
django-filter = "^2.3.0" # MIT
django-materializecss-form = "1.1.10" # MIT
djangorestframework = "^3.11.0" # MIT
django-redis = "^4.12.1" # BSD
django-storages = "^1.9.1" # BSD 3
django-tinymce4-lite = "1.7.5" # MIT
gunicorn = "^19.9" # MIT
pillow = "^7.0.0" # HPND
python = "^3.8.0" # PSF
requests = "^2.22" # Apache 2.0
starlette = "^0.14.1" # BSD 3
setuptools = "57.5.0"
psycopg2-binary = "^2.9.3"
[tool.poetry.dev-dependencies]
ansible = "2.10.6" # GNU
autoflake = "^1.4" # MIT
black = "19.10b0" # MIT
cfn-lint = "^0.56.3" # MIT
chevron = "^0.13.1" # MIT
coverage-badge = "^1.0.1" # MIT
isort = "4.3.4" # MIT
locust = "^1.4.3" # MIT
pylint = "^2.6.0" # GPL
pytest = "6.0.0" # MIT
pytest-cov = "^2.10.1" # MIT
pytest-django = "^3.9.0" # MIT
pytest-env = "^0.6.2" # MIT
pre-commit = "^2.8.2" # MIT
wrapt = "^1.12.1" # MIT
pylint-django = "^2.3.0" # GPLv2
networkx = "^2.5" # BSD-new
yamllint = "^1.25.0" # GNU
[tool.pytest.ini_options]
testpaths = "tests"
filterwarnings = '''
error
ignore::UserWarning
ignore::django.utils.deprecation.RemovedInDjango40Warning
'''
markers = '''
integration
'''
python_files = ["tests.py", "test_*", "*_tests.py"]
# Ignore python packages in sam-application/bin/
addopts = '''
--strict
--tb=short
--cov=.
--cov-branch
--cov-report=term-missing
--cov-report=html
--no-cov-on-fail
--cov-fail-under=95
'''
env = ["DJANGO_SETTINGS_MODULE=portfolio.settings", "CACHE_TTL=0"]
[build-system]
requires = ["wheel", "tomlkit", "poetry>=1.1.3"] # PEP 518
build-backend = "poetry.masonry.api"