-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
46 lines (38 loc) · 1020 Bytes
/
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
[tool.poetry]
name = "open-reservation"
version = "0.2.0"
description = "An Open Source reservation project for families"
authors = ["Sergio Ocón <sergio.ocon@gmail.com>"]
license = "GPL-3.0+"
[tool.poetry.dependencies]
python = "^3.7"
django = ">3.0"
django_mkdocs = "^0.1.2"
django-allauth = "^0.41.0"
django-pytest = "^0.2.0"
pytest-xdist = "^1.31.0"
pytest-django = "^3.8.0"
pytest-cov = "^2.8.1"
coverage = {version = "^5.0.3", extras = ["toml"]}
psycopg2 = "^2.8.4"
django-phonenumber-field = {extras = ["phonenumberslite"], version = "^4.0.0"}
whitenoise = "^5.1.0"
gunicorn = "^20.0.4"
[tool.poetry.dev-dependencies]
flake8 = "^3.7.9"
flake8-markdown = "^0.2.0"
pytest = "^5.3.5"
mkdocs = "^1.1"
pylint = "^2.4.4"
[tool.flake8]
max-line-length = 120
[tool.coverage.run]
parallel = true
command_line = "-m pytest openreservation"
[tool.coverage.paths]
source = ["openreservation"]
[tool.coverage.report]
show_missing = true
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"