代码拉取完成,页面将自动刷新
import sys
from os.path import join
import setuptools
import versioneer
from setuptools.extension import Extension
from Cython.Build import cythonize
import numpy
COMMON_INCLUDE_DIRS = [
'./geoist/magmod',
'./geoist/magmod/include',
join(sys.prefix, 'include'),
]
COMMON_INCLUDE_DIRS.append(numpy.get_include())
with open("README.md", "r") as fh:
long_description = fh.read()
extensions = [
Extension("geoist.pfm._prism",
["geoist/pfm/_prism.pyx"],
include_dirs=[numpy.get_include()]
),
Extension("geoist.inversion._ttime2d",
["geoist/inversion/_ttime2d.pyx"],
include_dirs=[numpy.get_include()]
),
Extension("geoist.inversion._wavefd",
["geoist/inversion/_wavefd.pyx"],
include_dirs=[numpy.get_include()]
),
Extension(
'geoist.magmod._pymm',
sources=[
'geoist/magmod/pymm.c',
],
libraries=[],
library_dirs=[],
include_dirs=COMMON_INCLUDE_DIRS,
),
Extension(
'geoist.magmod._pysunpos',
sources=[
'geoist/magmod/pysunpos.c',
],
libraries=[],
library_dirs=[],
include_dirs=COMMON_INCLUDE_DIRS,
),
Extension(
'geoist.magmod._pytimeconv',
sources=[
'geoist/magmod/pytimeconv.c',
],
libraries=[],
library_dirs=[],
include_dirs=COMMON_INCLUDE_DIRS,
),
]
exts = cythonize(extensions)
install_requires = ["numpy","matplotlib","scipy","h5py","numba","pandas",
"pytest","future","Cython",'statsmodels>=0.9.0',"PyWavelets",
"seaborn","patsy", "appdirs"]
setuptools.setup(
name="geoist",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="IGP-GRAVITY",
description="An Open-Source Geophysical Python Library for Geoscience Prototype Research",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/igp-gravity/geoist",
packages=setuptools.find_packages(),
ext_modules=exts,
include_package_data=True,
install_requires=install_requires,
classifiers=(
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
),
)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。