-
Notifications
You must be signed in to change notification settings - Fork 21
/
setup.py
46 lines (44 loc) · 1.44 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="easyQuake",
version="1.4.0",
author="Jake Walter",
author_email="jakeiwalter@gmail.com",
description="Simplified machine-learning driven earthquake detection, location, and analysis",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/jakewalter/easyQuake",
packages=setuptools.find_packages(),
install_requires=[
'basemap',
'keras==2.3.1',
'obspy',
'pandas',
'tensorflow==2.2',
'h5py==2.10.0',
'tqdm',
'tensorflow-gpu==2.2',
'protobuf==3.20.*',
'torch==1.7.1',
'torchmetrics==0.8.0',
'torchvision==0.8.2',
],
include_package_data=True,
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.7, <=3.8',
entry_points={
'console_scripts': [
'create_new_project=ilifu_user_management.create_new_project:main',
'gpd_predict=easyQuake.gpd_predict.gpd_predict:main',
'mseed_predictor=easyQuake.EQTransformer.mseed_predictor:main',
'phasenet_predict=easyQuake.phasenet.phasenet_predict:main',
'run_seisbench=easyQuake.seisbench.run_seisbench:main',
]
},
)