Skip to content

Commit

Permalink
Add exclude to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
hajimes committed Jan 5, 2024
1 parent 5e7fbe0 commit fcb5180
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
from setuptools import Extension, setup
from setuptools import Extension, find_packages, setup

mmh3module = Extension(
"mmh3", sources=["./src/mmh3/mmh3module.c", "./src/mmh3/_mmh3/murmurhash3.c"]
)

setup(
ext_modules=[mmh3module],
packages=find_packages(exclude=["./src/mmh3/_mmh3/refresh.py"]),
package_data={"mmh3": ["./src/mmh3/py.typed", "./src/mmh3/**.pyi"]},
)

0 comments on commit fcb5180

Please sign in to comment.