-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
79 lines (74 loc) · 2.34 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
# Metadata about the Python package https://python-poetry.org/docs/pyproject/
[tool.poetry]
name = "django-graphene-filters"
version = "0.0.8"
description = "Advanced auto related filters for Graphene Django"
authors = ["Rio Weber <riodweber@gmail.com>"]
maintainers = ["Rio Weber <riodweber@gmail.com>"]
license = "LICENSE"
readme = "README.md"
homepage = "https://github.com/riodw/django-graphene-filters"
repository = "https://github.com/riodw/django-graphene-filters"
keywords = ["django", "graphene", "filters", "related"]
# Classifiers helps to find project by categorizing it
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
"Framework :: Django",
"Framework :: Graphene",
]
[tool.poetry.urls]
Homepage = "https://pypi.org/project/django-graphene-filters"
repository = "https://pypi.org/project/django-graphene-filters"
issues = "https://github.com/riodw/django-graphene-filters/issues"
# DOWNLOAD = "https://github.com/riodw/django-graphene-filters"
# Dependencies needed to run the package
[tool.poetry.dependencies]
python = ">=3.9,<4.0"
Django = ">=3,<5.2"
graphene = ">=3,<4"
graphene-django = ">=3.0.0"
django-filter = ">=23.2"
psycopg2-binary = "^2.9.3"
stringcase = "^1.2.0"
anytree = "^2.8.0"
wrapt = "^1.14.0"
# Development dependencies
[tool.poetry.dev-dependencies]
# django-graphene-filters = { path = ".", develop = true }
coverage = "^7"
pytest = "^7.4.0"
pytest-django = "^4.5.2"
django-seed = "^0.3.1"
black = "^24.1.1"
flake8 = "^7.0.0"
flake8-annotations = "^3.0.1"
flake8-builtins = "^2.1.0"
flake8-comprehensions = "^3.8.0"
flake8-docstrings = "^1.6.0"
flake8-eradicate = "^1.5.0"
flake8-import-order = "^0.18.1"
flake8-quotes = "^3.3.2"
flake8-simplify = "^0.21.0"
flake8-use-fstring = "^1.3"
pep8-naming = "^0.13.3"
python-dotenv = "^1.0.0"
pre-commit = "^3.6.0"
# How the package will be built
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
# Semantic release settings
[tool.semantic_release]
version_variable = [
"django_graphene_filters/__init__.py:__version__",
"pyproject.toml:version",
]
branch = "master"
# Whether to upload to PyPI
upload_to_pypi = true
# Whether to upload to GitHub Releases
upload_to_release = true
# Build command before release
build_command = "pip install poetry && poetry build"