forked from kasra-hosseini/obspyDMT
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (32 loc) · 1.24 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
from setuptools import setup
#from distutils.core import setup
setup(
name="obspyDMT",
version="0.9.2",
description="obspyDMT: A Python Toolbox for Retrieving and Processing of Large Seismological Datasets",
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", "obspyDMT.utils"],
requires=['matplotlib', 'numpy'],
entry_points={
'console_scripts': [
'obspyDMT = obspyDMT.obspyDMT: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 large seismological datasets in a fully automatic
way which can be run in serial or in parallel.
"""
)