-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
49 lines (46 loc) · 1.5 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
version={}
with open("pspicker/version.py") as fp:
exec(fp.read(),version)
setuptools.setup(
name="pspicker",
version=version['__version__'],
author="Christian Baillard",
author_email="[email protected]",
description="Kurtosis-based P and S wave picker",
long_description=long_description,
long_description_content_type="text/markdown; charset=UTF-8",
url="https://github.com/WayneCrawford/pspicker",
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=[
'obspy>=1.2',
'numpy>=1.18',
'scipy>=1.5',
'verboselogs>=1.7',
'matplotlib>=3.2',
'pyyaml>=3.0',
'jsonschema>=2.6',
'jsonref>=0.2'
],
entry_points={},
python_requires='>=3.8',
setup_requires=["pytest-runner"],
tests_require=["pytest"],
classifiers=(
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics"
),
keywords='seismology'
)