Skip to content

Commit 9c11c05

Browse files
authored
Include csv in package (#7)
* Add csv to published package
1 parent 29ac9ec commit 9c11c05

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

pyproject.toml

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "pikvm_lib"
3-
version = "0.4.1"
3+
version = "0.4.2"
44
authors = [
55
{ name="guanana", email="[email protected]" },
66
]
@@ -34,7 +34,7 @@ Homepage = "https://github.com/guanana/pikvm-lib"
3434
Issues = "https://github.com/guanana/pikvm-lib/issues"
3535

3636
[tool.bumpver]
37-
current_version = "0.4.1"
37+
current_version = "0.4.2"
3838
version_pattern = "MAJOR.MINOR.PATCH"
3939
commit_message = "Bump version {old_version} -> {new_version}"
4040
tag_message = "{new_version}"
@@ -45,6 +45,12 @@ commit = true
4545
tag = true
4646
push = false
4747

48+
[tool.setuptools.packages.find]
49+
where = ["src"]
50+
51+
[tool.setuptools.package-data]
52+
pikvm_lib = ["keymap.csv", "keymap_shift.csv"]
53+
4854
[tool.bumpver.file_patterns]
4955
"pyproject.toml" = [
5056
'current_version = "{version}"',

0 commit comments

Comments
 (0)