-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
65 lines (57 loc) · 1.26 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
[tool.poetry]
name = "django_csvpermissions"
version = "0.2.0"
description = "CSV Based Permissions Module for Django"
authors = ["Alliance Software <[email protected]>"]
license = "BSD-2-Clause"
readme = "README.md"
include = [
"CHANGELOG.md",
]
keywords = [
"django",
"permission",
'alliance',
'alliancesoftware',
]
packages = [
{ include = "csv_permissions" },
]
[tool.poetry.dependencies]
python = ">=3.6,<4.0"
# the only hard dependency is django
Django = ">=2.2"
[tool.poetry.dev-dependencies]
tox = "*"
tox-factor = "*"
isort = ">=5"
Django = "^2.2"
factory-boy = ">=3"
# django 2.2 is incompatible with psycopg2 >=2.9
psycopg2 = "<2.9"
dataclasses = "*; python_version <= 3.6"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.isort]
force_single_line = true
force_sort_within_sections = true
line_length = 110
order_by_type = false
skip_glob = [
"*/.tox/*",
"*/node_modules/*.py",
"*/migrations/0*.py",
"*/settings/*.py",
]
# stdlib that may be backported or not always there
extra_standard_library=[
"pkg_resources",
"setuptools",
"typing",
]
# packages that we may have made local modifications too or are checked out from github
known_third_party=[
"django"
]
#known_first_party=[]