Skip to content

Commit f223405

Browse files
fixes packaging
1 parent 360afe0 commit f223405

File tree

1 file changed

+11
-3
lines changed

1 file changed

+11
-3
lines changed

pyproject.toml

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools>=61.0.0"]
2+
requires = ["setuptools>=61.0.0", "wheel"]
33
build-backend = "setuptools.build_meta"
44

55
[project]
@@ -60,6 +60,14 @@ push = false
6060
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']
6161
"mumble/__init__.py" = ['__version__ = "{version}"']
6262

63+
[tool.setuptools.packages.find]
64+
include = ["mumble*"]
65+
66+
[tool.setuptools.package-data]
67+
"mumble.package_data" = [
68+
"*.tsv",
69+
"*.db",
70+
]
71+
6372
[tool.setuptools]
64-
packages = ["mumble"]
65-
package-data = { "mumble" = ["default_ptm_list.tsv", "unimod.db"] }
73+
include-package-data = true

0 commit comments

Comments
 (0)