-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
59 lines (52 loc) · 1.9 KB
/
setup.py
File metadata and controls
59 lines (52 loc) · 1.9 KB
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
50
51
52
53
54
55
56
57
58
59
#!/usr/bin/env python
# -*- encoding: utf8 -*-
import io
import os
#from setuptools import find_packages
from setuptools import setup
from distutils.core import Extension
import numpy
long_description = """
Source code: https://github.com/chenyk1990/HSDL""".strip()
def read(*names, **kwargs):
return io.open(
os.path.join(os.path.dirname(__file__), *names),
encoding=kwargs.get("encoding", "utf8")).read()
from distutils.core import Extension
setup(
name="HSDL",
version="0.0.1",
license='MIT License',
description="HSDL: A novel and practical method to refine automatic earthquake catalog using hybrid shallow and deep learning",
long_description=long_description,
author="HSDL developing team",
author_email="chenyk2016@gmail.com",
url="https://github.com/chenyk1990/hsdl",
packages=['hsdl'],
include_package_data=True,
zip_safe=False,
classifiers=[
# complete classifier list:
# http://pypi.python.org/pypi?%3Aaction=list_classifiers
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics"
],
keywords=[
"seismology", "earthquake seismology", "exploration seismology", "array seismology", "denoising", "science", "engineering", "structure", "local slope", "filtering"
],
install_requires=[
"numpy", "scipy", "matplotlib"
],
extras_require={
"docs": ["sphinx", "ipython", "runipy"]
}
)