forked from kasra-hosseini/obspyDMT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
39 lines (38 loc) · 1.65 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
from setuptools import setup
#from distutils.core import setup
setup(
name = "obspyDMT",
version = "0.7.6",
description = "Retrieving, Processing and Management of Massive Seismological Data (Serial and Parallel)",
author = "Kasra Hosseini",
author_email = "[email protected]",
url = "https://github.com/kasra-hosseini/obspyDMT",
download_url = "https://github.com/kasra-hosseini/obspyDMT.git",
keywords = ["obspyDMT", "ObsPy", "Seismology"],
packages=["obspyDMT"],
entry_points = {
'console_scripts': [
'obspyDMT = obspyDMT.obspyDMT:main',
'compareDMT = obspyDMT.compareDMT:main',
'obspyDMT_managing_node = obspyDMT.obspyDMT_managing_node:main',
'obspyNC = obspyDMT.obspyNC:main',
],
},
classifiers = [
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
long_description = """\
obspyDMT (ObsPy Data Management Tool) is a command line tool for retrieving,
processing and management of massive seismological data in a fully automatic way
which could be run in serial or in parallel.
Moreover, complementary processing and managing tools have been
designed and introduced in addition to the obspyDMT options.
Because of the modular nature, different functionalities could be added
easily and/or obspyDMT can be used as a module for other programs.
"""
)