Skip to content

Commit

Permalink
Try to fix
Browse files Browse the repository at this point in the history
  • Loading branch information
EthanSteinberg committed Apr 3, 2024
1 parent ecc2b5a commit 2c5db2f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions native/WORKSPACE
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ http_archive(
name = "com_google_absl",
urls = ["https://github.com/abseil/abseil-cpp/archive/2f9e432cce407ce0ae50676696666f33a77d42ac.zip"],
strip_prefix = "abseil-cpp-2f9e432cce407ce0ae50676696666f33a77d42ac",
sha256 = "efa465b26da194f82320b4e39e2ca637ebe3129d7f3732ee71d9942099e3c773",
)

http_archive(
Expand Down
6 changes: 6 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,9 @@ requires-python=">3.9"
license = {text = "Apache-2.0"}

[tool.setuptools_scm]

[tool.setuptools.packages.find]
where = ["."] # list of folders that contain the packages (["."] by default)
include = ["meds_etl_cpp"] # package names should match these glob patterns (["*"] by default)
exclude = [] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def build_extensions(self) -> None:

setuptools.setup(
ext_modules=[
BazelExtension("meds_etl_native", "meds_etl_native.so", "native"),
BazelExtension("meds_etl_cpp", "meds_etl_cpp.so", "native"),
],
cmdclass={"build_ext": cmake_build_ext},
zip_safe=False,
Expand Down

0 comments on commit 2c5db2f

Please sign in to comment.