Skip to content

Commit e8270fe

Browse files
committed
Fix missing wrapper
1 parent 6e0739c commit e8270fe

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ def run(self):
3030

3131
setup(
3232
name=module_name,
33-
packages=find_packages(),
34-
version="0.1.3",
33+
packages=["libparse"],
34+
version="0.1.4",
3535
description="Python wrapper around Yosys' libparse module",
3636
long_description=open("Readme.md").read(),
3737
long_description_content_type="text/markdown",
@@ -48,4 +48,5 @@ def run(self):
4848
python_requires=">3.6",
4949
ext_modules=[ext],
5050
build_py=build_py,
51+
package_data = {'': ['libparse.py']} # needed for sdist
5152
)

0 commit comments

Comments
 (0)