2024-11-01 16:05:09 +01:00
|
|
|
from setuptools import setup, Extension
|
|
|
|
from Cython.Build import cythonize
|
|
|
|
|
|
|
|
extensions = [
|
2024-11-01 16:21:35 +01:00
|
|
|
Extension(
|
|
|
|
"sphereproj._project",
|
2024-11-01 16:34:19 +01:00
|
|
|
sources=[
|
|
|
|
"ext_src/_project.pyx", "ext_src/_project.cpp"
|
2024-11-01 16:21:35 +01:00
|
|
|
],
|
2024-11-01 16:34:19 +01:00
|
|
|
include_dirs=["ext_src"],
|
2024-11-01 16:21:35 +01:00
|
|
|
language="c++"
|
|
|
|
)
|
2024-11-01 16:05:09 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
2024-11-01 16:34:19 +01:00
|
|
|
setup(ext_modules=cythonize(extensions))
|