Skip to content

Commit c0d76c5

Browse files
committed
Added Python 3.13 support in toml
1 parent ca423c7 commit c0d76c5

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

pyproject.toml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "Dash_tooltip"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
description = "A tooltip functionality for Dash."
55
readme = "README.md"
66
requires-python = ">=3.7"
@@ -19,6 +19,7 @@ classifiers = [
1919
"Programming Language :: Python :: 3.10",
2020
"Programming Language :: Python :: 3.11",
2121
"Programming Language :: Python :: 3.12",
22+
"Programming Language :: Python :: 3.13",
2223
"License :: OSI Approved :: MIT License",
2324
"Operating System :: OS Independent",
2425
]
@@ -61,7 +62,8 @@ requires = [
6162
build-backend = "setuptools.build_meta"
6263

6364
[tool.setuptools.packages.find]
64-
where = ["dash_tooltip"]
65+
where = ["."]
66+
include = ["dash_tooltip*"]
6567

6668
[tool.setuptools_scm]
6769
write_to = "dash_tooltip/_version.py"

0 commit comments

Comments
 (0)