-
Nikolay Ivanov authoredNikolay Ivanov authored
setup.py 2.36 KiB
from setuptools import setup, find_packages
from distutils.core import Extension
import numpy
import sys
import os
try:
from Cython.Build import cythonize
except ImportError:
USE_CYTHON = False
else:
USE_CYTHON = True
ext = '.pyx' if USE_CYTHON else '.c'
extension_args = {'language': 'c',
'extra_compile_args': ['-fopenmp'],
'extra_link_args': ['-fopenmp'],
'libraries': ['gsl', 'gslcblas'],
'library_dirs': ['/usr/local/lib',
os.path.join(sys.prefix, 'lib')],
'include_dirs': [numpy.get_include(),
os.path.join(sys.prefix, 'include')],
'define_macros': [("NPY_NO_DEPRECATED_API", "NPY_1_7_API_VERSION")]}
extensions = [Extension(name='pyrost.bin.beam_calc',
sources=['pyrost/bin/beam_calc' + ext], **extension_args),
Extension(name='pyrost.bin.st_utils',
sources=['pyrost/bin/st_utils' + ext], **extension_args)]
if USE_CYTHON:
extensions = cythonize(extensions, annotate=False, language_level="3",
compiler_directives={'cdivision': True,
'boundscheck': False,
'wraparound': False,
'binding': True,
'embedsignature': True})
with open('README.md', 'r') as readme:
long_description = readme.read()
setup(name='pyrost',
version='0.1.10',
author='Nikolay Ivanov',
author_email="nikolay.ivanov@desy.de",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/simply-nicky/pyrost",
packages=find_packages(),
include_package_data=True,
package_data={'pyrost.bin': ['*.pyx', '*.c'],
'pyrost': ['config/*.ini']},
install_requires=['Cython', 'h5py', 'numpy', 'scipy'],
extras_require={'interactive': ['matplotlib', 'jupyter', 'pyximport']},
ext_modules=extensions,
classifiers=[
"Programming Language :: Python",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent"
],
python_requires='>=3.6')