-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (33 loc) · 1.17 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
import setuptools
setuptools.setup(
name="seisgen",
version="0.2.1",
author="Liang Ding",
author_email="[email protected]",
description="The theoretical seismic waveform generation tool",
long_description="The theoretical seismic waveform generation tool based on the stored Strain Green's Tensor (SGT)"
" database that is built by using the 3D background model and SPECFEM3D package.",
long_description_content_type="text/markdown",
url="https://github.com/Liang-Ding/seisgen",
project_urls={
"Bug Tracker": "https://github.com/Liang-Ding/seisgen/issues",
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
],
keywords=[
"seismology"
],
# package_dir={"": "seisgen"},
python_requires='>=3.6.0',
install_requires=[
"numpy", "scipy", "obspy",
"h5py",
],
# packages=setuptools.find_packages(where="seisgen"),
packages=setuptools.find_packages(),
)