forked from srivastavaresearchgroup/SAIPy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (33 loc) · 911 Bytes
/
setup.py
File metadata and controls
37 lines (33 loc) · 911 Bytes
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
import os
from pathlib import Path
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as f:
long_description = f.read()
setup(
name="saipy",
author="Megha, Wei, and Nishtha",
author_email="sai_group@gmail.com",
description="Deep learnig-based seismological application",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/srivastavaresearchgroup/SAIPy",
license="MIT",
packages=find_packages(exclude="tests"),
install_requires=[
'pytest>=6.2.3',
'keyring>=22.3.0',
'pkginfo>=1.7.0',
'scipy>=1.6.2',
'tensorflow>=2.8.0',
'keras>=2.8.0',
'matplotlib>=3.7.1',
'pandas>=1.1.5',
'tqdm>=4.65.0',
'h5py>=2.10.0',
'obspy>=1.4.0',
'jupyter>=1.0.0',
'seaborn>=0.12.2',
'scikit-learn>=0.24.1',
'torch>=1.12.1+cu113'],
python_requires='>=3.8',
)