Skip to content

Commit 173c70a

Browse files
committed
Trying out Cython
1 parent 5129af1 commit 173c70a

5 files changed

Lines changed: 42329 additions & 18 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[build-system]
2-
requires = ["setuptools>=61.2"]
2+
requires = ["setuptools>=61.2", "Cython"]
33
build-backend = "setuptools.build_meta"
44

55
[project]

setup.py

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
from setuptools import setup
2+
from Cython.Build import cythonize
3+
4+
setup(
5+
ext_modules = cythonize("src/svg/path/path.py")
6+
)

0 commit comments

Comments
 (0)