Skip to content

Commit

Permalink
update setup for Cython Pt.2
Browse files Browse the repository at this point in the history
  • Loading branch information
thierrymoudiki committed Oct 4, 2024
1 parent f1a9e6b commit 9817a17
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,14 +131,14 @@
Extension(name="mlsauce.booster._boosterc",
sources=[booster_cython_file],
include_dirs=[numpy.get_include()]),
Extension(name="mlsauce.booster._lassoc",
sources=[booster_cython_file],
Extension(name="mlsauce.lasso._lassoc",
sources=[lasso_cython_file],
include_dirs=[numpy.get_include()]),
Extension(name="mlsauce.booster._ridgec",
sources=[booster_cython_file],
Extension(name="mlsauce.ridge._ridgec",
sources=[ridge_cython_file],
include_dirs=[numpy.get_include()]),
Extension(name="mlsauce.booster._stumpc",
sources=[booster_cython_file],
Extension(name="mlsauce.stump._stumpc",
sources=[stump_cython_file],
include_dirs=[numpy.get_include()]),
]

Expand Down

0 comments on commit 9817a17

Please sign in to comment.