-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
39 lines (35 loc) · 1.03 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
[tool.poetry]
name = "devind_notifications"
version = "0.4.2"
description = "Devind django app for notifications."
authors = ["Victor <[email protected]>"]
license = "MIT"
homepage = "https://github.com/devind-team/devind-django-notifications"
repository = "https://github.com/devind-team/devind-django-notifications"
keywords = ["django", "graphene", "notifications"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: Django"
]
[tool.poetry.dependencies]
python = "^3.9"
devind-core = "^0"
Django = "^3"
graphene-django = "^2.15.0"
devind-helpers = "^0"
celery = "^5.2.5"
[tool.poetry.dev-dependencies]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.semantic_release]
version_variable = [
"devind_notifications/__init__.py:__version__",
"pyproject.toml:version"
]
branch = "main"
upload_to_pypi = true
upload_to_release = true
build_command = "pip install poetry && poetry build"