forked from daisylb/bridgekeeper
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
32 lines (29 loc) · 839 Bytes
/
pyproject.toml
File metadata and controls
32 lines (29 loc) · 839 Bytes
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
[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.10,<4.0"
[tool.poetry.group.dev.dependencies]
djangorestframework = "^3.10"
pytest = "^9.0"
pytest-django = "^4.8"
prospector = "1.5.1"
# poetry seems to choke on this so for now, it's installed by nox instead
#factory-boy = "^3.0.0"
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"