-
Notifications
You must be signed in to change notification settings - Fork 13
/
pyproject.toml
112 lines (105 loc) · 2.97 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
[tool.poetry]
name = "graphene-django-plus"
version = "5.1"
description = "Tools to easily create permissioned CRUD endpoints in graphene."
authors = ["Thiago Bellini Ribeiro <[email protected]>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/0soft/graphene-django-plus"
repository = "https://github.com/0soft/graphene-django-plus"
documentation = "https://graphene-django-plus.readthedocs.io"
keywords = ["graphene", "django", "graphql", "crud", "permissions"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Framework :: Django",
"Framework :: Django :: 3.2",
"Framework :: Django :: 4.0",
"Framework :: Django :: 4.1",
"Framework :: Django :: 4.2",
]
packages = [{ include = "graphene_django_plus" }]
[tool.poetry.dependencies]
python = "^3.8"
django = ">=3.2"
graphene-django = ">=3.1.2"
[tool.poetry.dev-dependencies]
black = "^22.3.0"
codecov = "^2.1.11"
django = "^4.1.7"
django-filter = "^22.1"
django-guardian = "^2.3.0"
django-types = "^0.17.0"
flake8 = "^4.0.1"
flake8-broken-line = "^0.4.0"
flake8-bugbear = "^22.1.11"
flake8-builtins = "^1.5.3"
flake8-comprehensions = "^3.7.0"
flake8-polyfill = "^1.0.2"
flake8-return = "^1.1.3"
flake8-simplify = "^0.19.2"
graphene = "^3.2.1"
graphene-django = "^3.1.2"
graphene-django-optimizer = { git = "https://github.com/bellini666/graphene-django-optimizer.git" }
mock = "^5.0.1"
pytest = "^7.1.2"
pytest-cov = "^4.0.0"
pytest-env = "^0.8.1"
pytest-django = "^4.2.0"
pytest-mock = "^3.6.1"
pytest-sugar = "^0.9.4"
sphinx = "^4"
sphinx-rtd-theme = "^1.0.0"
[tool.black]
line-length = 100
target-version = ['py38', 'py39']
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| __pycached__
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
py_version = 38
multi_line_output = 3
force_sort_within_sections = true
[tool.pyright]
pythonVersion = "3.8"
pythonPlatform = "Linux"
useLibraryCodeForTypes = true
reportUnnecessaryTypeIgnoreComment = "warning"
reportUnnecessaryCast = "warning"
reportCallInDefaultInitializer = "warning"
reportOverlappingOverload = "warning"
reportUninitializedInstanceVariable = "warning"
reportUntypedNamedTuple = "error"
reportMissingSuperCall = "warning"
strictListInference = "error"
strictDictionaryInference = "error"
strictSetInference = "error"
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "tests.settings"
python_files = "tests/test_*.py"
addopts = "-p no:warnings --nomigrations --cov=./ --cov-report term-missing:skip-covered"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"