Simplify test

This commit is contained in:
Ayaz Salikhov
2022-02-21 18:47:42 +00:00
parent 9b2484a38b
commit 0fae846c34
2 changed files with 15 additions and 28 deletions

View File

@@ -1,9 +1,4 @@
from setuptools import setup
from Cython.Build import cythonize
from pathlib import Path
THIS_DIR = Path(__file__).parent.resolve()
setup(ext_modules=cythonize(str(THIS_DIR / "helloworld.pyx")))
setup(ext_modules=cythonize("helloworld.pyx"))