Skip to content

Commit

Permalink
Add setup.py to compile the C extension
Browse files Browse the repository at this point in the history
  • Loading branch information
pelletier committed Jan 31, 2024
1 parent 477f9e2 commit 793fd70
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
from setuptools import Extension, setup

setup(
ext_modules=[
Extension(
name="dispatch.experimental.durable._frame",
sources=["src/dispatch/experimental/durable/_frame.c"],
),
]
)

0 comments on commit 793fd70

Please sign in to comment.