Skip to content

Commit

Permalink
Renaming and dependency fix
Browse files Browse the repository at this point in the history
  • Loading branch information
tmi committed Jan 10, 2025
1 parent 6a5385a commit 5aa7762
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions python_interface/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "pymetkit"
name = "metkit"
version = "0.0.0"
dependencies = ["cffi", "findlibs"]
dependencies = ["cffi", "findlibs", "metkitlib"]
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ def _get_lib():
if _lib is None:
ffi = cffi.FFI()
ffi.cdef("unsigned int metkit_version_int();")
loc = findlibs.find("metkit", "metkitlibs")
loc = findlibs.find("metkit", "metkitlib")
_lib = ffi.dlopen(loc)
return _lib

Expand Down

0 comments on commit 5aa7762

Please sign in to comment.