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",
|
|
|
|
[
|
|
|
|
"ext_src/_project.pyx",
|
|
|
|
],
|
|
|
|
language="c++"
|
|
|
|
)
|
2024-11-01 16:05:09 +01:00
|
|
|
]
|
|
|
|
|
|
|
|
|
2024-11-01 16:21:35 +01:00
|
|
|
setup(py_modules=["sphereproj"],ext_modules=cythonize(extensions))
|