-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpyproject.toml
33 lines (30 loc) · 855 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
[tool.poetry]
name = "bridgekeeper"
version = "0.9"
description = "Django permissions that work with QuerySets."
homepage = "https://bridgekeeper.leigh.party/"
repository = "https://github.com/excitedleigh/bridgekeeper"
authors = ["Leigh Brenecki <leigh@brenecki.id.au>"]
license = "MIT"
readme = "README.rst"
[tool.poetry.dependencies]
python = ">=3.5"
[tool.poetry.dev-dependencies]
djangorestframework = "^3.10"
pytest = "^5.0"
pytest-django = "^3.5"
pytest-pythonpath = "^0.7.3"
prospector = "^1.1"
# poetry seems to choke on this so for now, it's installed by nox instead
#factory-boy = "^2.9.2"
sphinx = "^3.1.1"
sphinx-rtd-theme = "^0.5.0"
[tool.isort]
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"