forked from devind-team/graphene-django-filter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
58 lines (54 loc) · 1.51 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
[tool.poetry]
name = "graphene-django-filter"
version = "0.6.5"
description = "Advanced filters for Graphene"
authors = ["devind-team <team@devind.ru>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/devind-team/graphene-django-filter"
repository = "https://github.com/devind-team/graphene-django-filter"
keywords = ["django", "graphene", "filter"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Django"
]
[tool.poetry.dependencies]
python = ">=3.8,<4.0"
Django = ">=3,<4.3"
graphene = ">=2.1.9,<4"
graphene-django = "^3.0.0"
django-filter = "^21.1"
psycopg2-binary = "^2.9.3"
stringcase = "^1.2.0"
anytree = "^2.8.0"
wrapt = "^1.14.0"
[tool.poetry.dev-dependencies]
flake8 = "^4.0.1"
flake8-import-order = "^0.18.1"
flake8-docstrings = "^1.6.0"
flake8-builtins = "^1.5.3"
flake8-quotes = "^3.3.1"
flake8-comprehensions = "^3.8.0"
flake8-eradicate = "^1.2.1"
flake8-simplify = "^0.19.2"
flake8-use-fstring = "^1.3"
flake8-annotations = "^2.9.0"
pep8-naming = "^0.12.1"
django-seed = "^0.3.1"
python-dotenv = "^0.20.0"
pre-commit = "^2.19.0"
coveralls = "^3.3.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
version_variable = [
"graphene_django_filter/__init__.py:__version__",
"pyproject.toml:version"
]
branch = "main"
upload_to_pypi = true
upload_to_release = true
build_command = "pip install poetry && poetry build"