Skip to content

Commit

Permalink
Tell setup to include Empirical
Browse files Browse the repository at this point in the history
  • Loading branch information
emilydolson committed Jul 9, 2024
1 parent f2e769b commit c19be10
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
# Available at setup time due to pyproject.toml
from pybind11.setup_helpers import Pybind11Extension, build_ext
from setuptools import setup
import glob

__version__ = "0.2.2"

Expand All @@ -18,7 +19,7 @@

ext_modules = [
Pybind11Extension("phylotrackpy.systematics",
["systematics_bindings.cpp"],
["systematics_bindings.cpp"] + sorted(glob.glob("Empirical/**", recursive=True)),
# Example: passing in the version to the compiled code
define_macros = [('VERSION_INFO', __version__), ("EMP_OPTIONAL_THROW_ON", 1)],
cxx_std=20
Expand Down

0 comments on commit c19be10

Please sign in to comment.