-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
25 lines (23 loc) · 802 Bytes
/
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
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='quakephase',
version='0.2.5',
packages=find_packages(),
author='Peidong Shi',
author_email="speedshi@hotmail.com",
description="A Python package for automatic seismic phase characterization",
long_description=long_description,
long_description_content_type='text/markdown',
url="https://github.com/speedshi/quakephase",
license="GPLv3",
keywords="Seismology, Machine Learning, Phase Picking, Seismic Monitoring, Earthquake Monitoring",
install_requires=[
'seisbench',
'pyyaml',
'scikit-learn',
# Add any other dependencies here
],
)