Skip to content

Commit 3d62e2c

Browse files
Exclude tests from package
1 parent b54c2b8 commit 3d62e2c

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# MANIFEST.in – keep test files out of the source distribution
2+
recursive-exclude tests *

libpyvivotek/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
"""A python implementation of the Vivotek IB8369A"""
22
from libpyvivotek.vivotek import VivotekCamera
33

4-
VERSION = "0.6.0"
4+
VERSION = "0.6.1"

pyproject.toml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,4 +42,6 @@ version = {attr = "libpyvivotek.VERSION"}
4242
readme = {file = ["README.md"], content-type = "text/markdown"}
4343

4444
[tool.setuptools.packages.find]
45-
exclude = ["libpyvivotek.tests*"]
45+
exclude = [
46+
"tests*"
47+
]

0 commit comments

Comments
 (0)