Skip to content

Commit

Permalink
fix cython setup
Browse files Browse the repository at this point in the history
  • Loading branch information
AWehrhahn committed Jun 8, 2021
1 parent b87b2b0 commit 9d34da8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
2 changes: 2 additions & 0 deletions cython/MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
include lib/*
include share/libsme/*
5 changes: 3 additions & 2 deletions cython/setup.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from distutils.core import setup
from setuptools import setup
from distutils.extension import Extension
from os.path import dirname, join, realpath

Expand All @@ -21,5 +21,6 @@
)
setup(
name="smelib",
ext_modules=cythonize([examples_extension], language_level=3)
ext_modules=cythonize([examples_extension], language_level=3),
include_package_data=True,
)

0 comments on commit 9d34da8

Please sign in to comment.