Skip to content

Commit 9b438c2

Browse files
committed
FIX: change to correct namespace package
1 parent d28fed4 commit 9b438c2

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
import setuptools
1+
from setuptools import setup, find_namespace_packages
22

33
with open("README.md", "r", encoding="utf-8") as fh:
44
long_description = fh.read()
55

6-
setuptools.setup(
6+
setup(
77
name="cc.udp",
8-
version="2024.5.2",
8+
version="2024.8.16",
99
author="Uncertainty.",
1010
author_email="[email protected]",
1111
description="UDP helper function for robotics workload.",
@@ -24,7 +24,7 @@
2424
"numpy",
2525
"cc-serializer",
2626
],
27-
package_dir={"": "src"},
28-
packages=setuptools.find_packages(where="src"),
27+
package_dir={"": "src/"},
28+
packages=find_namespace_packages(where="src/", include=["cc.scpi"]),
2929
python_requires=">=3.8",
3030
)

0 commit comments

Comments
 (0)