updated python files included to handle cpp bindings
Gitea Actions For Fabelous-Math / Explore-Gitea-Actions (push) Successful in 18s Details

This commit is contained in:
Falko Victor Habel 2025-03-14 14:22:39 +01:00
parent 0ef21826db
commit 70b40cdeeb
4 changed files with 17 additions and 4 deletions

View File

@ -1,4 +1,6 @@
from fabelous_math import is_even, is_odd, rooting
from fabelous_math import is_even, is_odd, rooting, approximate_pi
print(approximate_pi(10000000))
print(rooting(0.5))
print(is_even(5))

View File

@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
[project]
name = "fabelous_math"
version = "0.2.1"
version = "0.3.14"
description = "Math functions written in C++ for faster code"
authors = [
{name = "Falko Habel", email = "falko.habel@fabelous.app"}

View File

@ -21,6 +21,16 @@ simple_functions_module = Extension(
extra_link_args=extra_link_args,
)
pi_module = Extension(
'fabelous_math.pi',
sources=[
'src/fabelous_math/cpp/functions/pi.cpp',
'src/fabelous_math/cpp/functions/bindings/pi_bindings.cpp'
],
include_dirs=['src/fabelous_math/include'],
extra_compile_args=extra_compile_args,
extra_link_args=extra_link_args,
)
sqrt_module = Extension(
'fabelous_math.rooting',
@ -36,7 +46,7 @@ sqrt_module = Extension(
setup(
name='fabelous_math',
description='Math functions written in C++ for faster code',
ext_modules=[simple_functions_module, sqrt_module],
ext_modules=[simple_functions_module, sqrt_module, pi_module],
author="Falko Habel",
author_email="falko.habel@fabelous.app"
)

View File

@ -1,4 +1,5 @@
from fabelous_math.simple_functions import is_even, is_odd
from fabelous_math.pi import approximate_pi
from fabelous_math.rooting import rooting
__all__ = ["is_even", "is_odd", "rooting"]
__all__ = ["is_even", "is_odd", "approximate_pi", "rooting"]