fix: packaged data still wrong

This commit is contained in:
Guilhem Lavaux 2024-11-01 17:34:19 +02:00
parent e7471e1a6a
commit f61839c82e
3 changed files with 6 additions and 3 deletions

1
MANIFEST.in Normal file
View File

@ -0,0 +1 @@
include ext_src/*

View File

@ -4,12 +4,13 @@ from Cython.Build import cythonize
extensions = [
Extension(
"sphereproj._project",
[
"ext_src/_project.pyx",
sources=[
"ext_src/_project.pyx", "ext_src/_project.cpp"
],
include_dirs=["ext_src"],
language="c++"
)
]
setup(py_modules=["sphereproj"],ext_modules=cythonize(extensions))
setup(ext_modules=cythonize(extensions))

View File

@ -0,0 +1 @@
from ._project import spherical_projection