Skip to content

Commit 89faf39

Browse files
committed
fixed pypi packaging issue
1 parent 55ea3dc commit 89faf39

File tree

3 files changed

+12
-3
lines changed

3 files changed

+12
-3
lines changed

CHANGELOG.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,12 @@ Changelog
66
Due to this library relying on external content, older versions are not guaranteed to work.
77
Try to always use the latest version.
88

9+
.. v6.0.4
10+
11+
6.0.4 (2023-10-01)
12+
==================
13+
- Fixed pypi packaging issue.
14+
915
.. v6.0.3
1016
1117
6.0.3 (2023-10-01)

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,11 @@
22
requires = ["setuptools>=61"]
33
build-backend = "setuptools.build_meta"
44

5-
[tool.setuptools]
6-
packages = ["tibiapy"]
5+
6+
[tool.setuptools.packages.find]
7+
include = [
8+
"tibiapy*",
9+
]
710

811
[project]
912
name = "tibia.py"

tibiapy/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""Tibia.com parsing and fetching library."""
2-
__version__ = "6.0.3"
2+
__version__ = "6.0.4"
33
__author__ = "Allan Galarza"
44
__license__ = "Apache-2.0 License"
55

0 commit comments

Comments
 (0)