Skip to content

Commit

Permalink
Move Empirical into phylotrackpy directory
Browse files Browse the repository at this point in the history
  • Loading branch information
emilydolson committed Jul 9, 2024
1 parent 046ff13 commit f089af0
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[submodule "Empirical"]
path = Empirical
path = phylotrackpy/Empirical
url = https://github.com/devosoft/Empirical.git
branch = mabe-systematics
File renamed without changes.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

ext_modules = [
Pybind11Extension("phylotrackpy.systematics",
["systematics_bindings.cpp"],
["phylotrackpy/systematics_bindings.cpp"],
# Example: passing in the version to the compiled code
define_macros = [('VERSION_INFO', __version__), ("EMP_OPTIONAL_THROW_ON", 1)],
cxx_std=20
Expand All @@ -41,5 +41,5 @@
zip_safe=False,
python_requires=">=3.7",
packages=['phylotrackpy'],
headers=sorted(glob.glob("Empirical/**/*.hpp", recursive=True))
headers=sorted(glob.glob("phylotrackpy/Empirical/**/*.hpp", recursive=True))
)

0 comments on commit f089af0

Please sign in to comment.