1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/zthcool-RBF

Клонировать/Скачать
setup.py 1.4 КБ
Копировать Редактировать Web IDE Исходные данные Просмотреть построчно История
Trever Hines Отправлено 29.04.2019 04:23 1b3c170
#!/usr/bin/env python
if __name__ == '__main__':
from distutils.core import setup
from distutils.extension import Extension
from Cython.Build import cythonize
import numpy as np
ext = []
ext += [Extension(name='rbf.poly',
sources=['rbf/poly.pyx'],
include_dirs=[np.get_include()])]
ext += [Extension(name='rbf.sputils',
sources=['rbf/sputils.pyx'],
include_dirs=[np.get_include()])]
ext += [Extension(name='rbf.pde.halton',
sources=['rbf/pde/halton.pyx'],
include_dirs=[np.get_include()])]
ext += [Extension(name='rbf.pde.geometry',
sources=['rbf/pde/geometry.pyx'],
include_dirs=[np.get_include()])]
ext += [Extension(name='rbf.pde.sampling',
sources=['rbf/pde/sampling.pyx'],
include_dirs=[np.get_include()])]
ext += [Extension(name='rbf.misc.bspline',
sources=['rbf/misc/bspline.pyx'],
include_dirs=[np.get_include()])]
setup(name='RBF',
version='2019.04.28',
description='Package containing the tools necessary for radial basis function (RBF) applications',
author='Trever Hines',
author_email='treverhines@gmail.com',
url='www.github.com/treverhines/RBF',
packages=['rbf', 'rbf.misc', 'rbf.pde'],
ext_modules=cythonize(ext),
license='MIT')

Опубликовать ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://api.gitlife.ru/oschina-mirror/zthcool-RBF.git
git@api.gitlife.ru:oschina-mirror/zthcool-RBF.git
oschina-mirror
zthcool-RBF
zthcool-RBF
master