Skip to content

Commit 1f25198

Browse files
Update package inclusion and exclusion in setup.py
1 parent 603c8fc commit 1f25198

1 file changed

Lines changed: 13 additions & 1 deletion

File tree

setup.py

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,19 @@ def get_install_requires():
5656
author_email="mkececi@yaani.com",
5757
maintainer_email="mkececi@yaani.com",
5858
url="https://github.com/WhiteSymmetry/kha256",
59-
packages=find_packages(),
59+
#packages=find_packages(),
60+
packages=find_packages(
61+
include=["kha256", "kha256.*"],
62+
exclude=[
63+
"binder", "content", "data", "notebooks",
64+
"tests", "tests.*",
65+
"docs", "docs.*",
66+
"examples", "examples.*",
67+
"build", "dist",
68+
"*.tests", "*.tests.*", ".github",
69+
]
70+
),
71+
include_package_data=True,
6072
package_data={
6173
"kha256": ["__init__.py", "_version.py", "*.pyi"]
6274
},

0 commit comments

Comments
 (0)