Skip to content
Snippets Groups Projects
Commit acf1b079 authored by Markus Holzer's avatar Markus Holzer Committed by Michael Kuron
Browse files

Ship c-file with pypi

parent cd2007fe
Branches
Tags
No related merge requests found
...@@ -59,10 +59,12 @@ def readme(): ...@@ -59,10 +59,12 @@ def readme():
def cython_extensions(*extensions): def cython_extensions(*extensions):
from distutils.extension import Extension from distutils.extension import Extension
ext = '.pyx' ext = '.pyx' if USE_CYTHON else '.c'
result = [Extension(e, [e.replace('.', '/') + ext]) for e in extensions] result = [Extension(e, [e.replace('.', '/') + ext]) for e in extensions]
from Cython.Build import cythonize if USE_CYTHON:
return cythonize(result, language_level=3) from Cython.Build import cythonize
result = cythonize(result, language_level=3)
return result
try: try:
...@@ -90,9 +92,9 @@ setuptools.setup(name='pystencils', ...@@ -90,9 +92,9 @@ setuptools.setup(name='pystencils',
'kerncraft_coupling/templates/*', 'kerncraft_coupling/templates/*',
'backends/cuda_known_functions.txt', 'backends/cuda_known_functions.txt',
'backends/opencl1.1_known_functions.txt', 'backends/opencl1.1_known_functions.txt',
'boundaries/createindexlistcython.c',
'boundaries/createindexlistcython.pyx']}, 'boundaries/createindexlistcython.pyx']},
ext_modules=cython_extensions("pystencils.boundaries.createindexlistcython"),
ext_modules=cython_extensions("pystencils.boundaries.createindexlistcython") if USE_CYTHON else [],
classifiers=[ classifiers=[
'Development Status :: 4 - Beta', 'Development Status :: 4 - Beta',
'Framework :: Jupyter', 'Framework :: Jupyter',
...@@ -116,6 +118,7 @@ setuptools.setup(name='pystencils', ...@@ -116,6 +118,7 @@ setuptools.setup(name='pystencils',
'autodiff': ['pystencils-autodiff'], 'autodiff': ['pystencils-autodiff'],
'doc': ['sphinx', 'sphinx_rtd_theme', 'nbsphinx', 'doc': ['sphinx', 'sphinx_rtd_theme', 'nbsphinx',
'sphinxcontrib-bibtex', 'sphinx_autodoc_typehints', 'pandoc'], 'sphinxcontrib-bibtex', 'sphinx_autodoc_typehints', 'pandoc'],
'use_cython': ['Cython']
}, },
tests_require=['pytest', tests_require=['pytest',
'pytest-cov', 'pytest-cov',
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment