fix: packaged data still wrong
This commit is contained in:
parent
e7471e1a6a
commit
f61839c82e
1
MANIFEST.in
Normal file
1
MANIFEST.in
Normal file
@ -0,0 +1 @@
|
|||||||
|
include ext_src/*
|
7
setup.py
7
setup.py
@ -4,12 +4,13 @@ from Cython.Build import cythonize
|
|||||||
extensions = [
|
extensions = [
|
||||||
Extension(
|
Extension(
|
||||||
"sphereproj._project",
|
"sphereproj._project",
|
||||||
[
|
sources=[
|
||||||
"ext_src/_project.pyx",
|
"ext_src/_project.pyx", "ext_src/_project.cpp"
|
||||||
],
|
],
|
||||||
|
include_dirs=["ext_src"],
|
||||||
language="c++"
|
language="c++"
|
||||||
)
|
)
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|
||||||
setup(py_modules=["sphereproj"],ext_modules=cythonize(extensions))
|
setup(ext_modules=cythonize(extensions))
|
||||||
|
1
src/sphereproj/__init__.py
Normal file
1
src/sphereproj/__init__.py
Normal file
@ -0,0 +1 @@
|
|||||||
|
from ._project import spherical_projection
|
Loading…
Reference in New Issue
Block a user