Skip to content
This repository was archived by the owner on Sep 16, 2024. It is now read-only.

Commit 593f191

Browse files
committed
Use cython in setup
1 parent ac12f5e commit 593f191

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

gensetup.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,11 @@ def load_version():
6868
f'''#!/usr/bin/python3
6969
# This file is auto generated. Do not modify
7070
from distutils.core import setup
71+
72+
from Cython.Build import cythonize
73+
7174
setup(
75+
ext_modules = cythonize(["typedload/dataloader.py", "typedload/typechecks.py", "typedload/exceptions.py"]),
7276
name='typedload',
7377
version={load_version()!r},
7478
description='Load and dump data from json-like format into typed data structures',

0 commit comments

Comments
 (0)