-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
54 lines (48 loc) · 1.88 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/usr/bin/env python
# -*- encoding: utf8 -*-
from setuptools import setup
from distutils.core import Extension
import numpy
long_description = """
Source code: https://github.com/aaspip/pyekfmm""".strip()
eikonalc_module = Extension('eikonalc', sources=['pyekfmm/src/eikonal.c'],
include_dirs=[numpy.get_include()])
eikonalvtic_module = Extension('eikonalvtic', sources=['pyekfmm/src/eikonalvti.c'],
include_dirs=[numpy.get_include()])
setup(
name="pyekfmm",
version="0.0.8.8",
license='GNU General Public License, Version 3 (GPLv3)',
description="Fast Marching Method for Traveltime Calculation",
long_description=long_description,
author="pyekfmm developing team",
author_email="[email protected]",
url="https://github.com/aaspip/pyekfmm",
ext_modules=[eikonalc_module,eikonalvtic_module],
packages=['pyekfmm'],
include_package_data=True,
zip_safe=False,
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
],
keywords=[
"seismology", "exploration seismology", "array seismology", "traveltime", "ray tracing", "earthquake location", "earthquake relocation", "surface wave tomography", "body wave tomography"
],
install_requires=[
"numpy", "scipy", "matplotlib"
],
extras_require={
"docs": ["sphinx", "ipython", "runipy"]
}
)