Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import platform
import subprocess
from codecs import open

import Cython as cth
from Cython.Distutils import build_ext
from Cython.Build import cythonize
Expand Down Expand Up @@ -282,7 +283,10 @@ def get_version_tofu(path=_HERE):
# The version is stored only in the setup.py file and read from it (option
# 1 in https://packaging.python.org/en/latest/single_source_version.html)
use_scm_version=False,
# setup_requires=['setuptools_scm'],
setup_requires=[
"cython>=0.26",
"numpy",
],
description="A python library for Tomography for Fusion",
long_description=long_description,
long_description_content_type=long_description_content_type,
Expand Down