Skip to content

Commit c31b263

Browse files
author
Victor
committed
feat: Set start version and other fix.
1 parent f02c287 commit c31b263

2 files changed

Lines changed: 22 additions & 0 deletions

File tree

devind_notifications/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
"""Devind django app for notifications via graphql subscriptions."""
2+
3+
__version__ = '0.0.1'

pyproject.toml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ version = "0.0.1"
44
description = "Devind django app for notifications."
55
authors = ["Victor <lyferov@yandex.ru>"]
66
license = "MIT"
7+
homepage = "https://github.com/devind-team/devind-django-notifications"
8+
repository = "https://github.com/devind-team/devind-django-notifications"
9+
keywords = ["django", "graphene", "notifications"]
10+
classifiers = [
11+
"Programming Language :: Python :: 3",
12+
"License :: OSI Approved :: MIT License",
13+
"Operating System :: OS Independent",
14+
"Framework :: Django"
15+
]
716

817
[tool.poetry.dependencies]
918
python = "^3.9"
@@ -18,3 +27,13 @@ celery = "^5.2.3"
1827
[build-system]
1928
requires = ["poetry-core>=1.0.0"]
2029
build-backend = "poetry.core.masonry.api"
30+
31+
[tool.semantic_release]
32+
version_variable = [
33+
"devind_notifications/__init__.py:__version__",
34+
"pyproject.toml:version"
35+
]
36+
branch = "main"
37+
upload_to_pypi = true
38+
upload_to_release = true
39+
build_command = "pip install poetry && poetry build"

0 commit comments

Comments
 (0)