-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 1.08 KB
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
[tool.poetry]
name = "devind_helpers"
version = "0.7.0"
description = "Devind helpers."
authors = ["Victor <lyferov@yandex.ru>"]
license = "MIT"
readme = "readme.md"
homepage = "https://github.com/devind-team/devind-django-helpers"
repository = "https://github.com/devind-team/devind-django-helpers"
keywords = ["django", "graphene", "helpers"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Django"
]
[tool.poetry.dependencies]
python = "^3.9"
redis = "^4.1.4"
Django = ">=3.2.12,<5.0.0"
graphene-django = "^2.15.0"
inflection = "^0.5.1"
graphene-django-optimizer = "^0.8.0"
flatten-dict = "^0.4.2"
openpyxl = "^3.0.9"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
version_variable = [
"devind_helpers/__init__.py:__version__",
"pyproject.toml:version"
]
branch = "main"
upload_to_pypi = true
upload_to_release = true
build_command = "pip install poetry && poetry build"