-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (34 loc) · 1.11 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "shiny_semantic"
version = "v0.1.3"
description = "Semantic UI components in Shiny for Python"
readme = "README.md"
authors = [
{ name = "Pavel Demin", email = "pavel.demin@appsilon.com" },
{ name = "Kamil Żyła", email = "kamil@appsilon.com" },
]
maintainers = [
{ name = "Appsilon", email = "opensource@appsilon.com" }
]
license = { file = "LICENSE" }
classifiers = ["Programming Language :: Python :: 3"]
keywords = ["shiny", "semantic", "web"]
dependencies = ["shiny >= 0.2.9"]
requires-python = ">=3.10"
[project.optional-dependencies]
dev = ["black", "isort", "flake8", "pre-commit", "bumpver"]
[project.urls]
GitHub = "https://github.com/Appsilon/py_shiny_semantic"
[tool.bumpver]
current_version = "v0.1.3"
version_pattern = "vMAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
tag = true
push = true
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']
"shiny_semantic/__init__.py" = ["{version}"]