forked from kasra-hosseini/obspyDMT
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·42 lines (40 loc) · 1.62 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
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from setuptools import setup
setup(
name="obspyDMT",
version="2.2.7",
keywords=["obspyDMT", "obspy", "seismology", "geophysics"],
requires=['matplotlib', 'numpy'],
description="obspyDMT: A Python Toolbox for Retrieving, Processing and "
"Management of Seismological Datasets",
long_description="""\
obspyDMT (obspy Data Management Tool) is a command line tool for retrieving,
processing and management of seismological datasets in a fully automatic way.
""",
author=u"Kasra Hosseini",
author_email="[email protected]",
url="https://github.com/kasra-hosseini/obspyDMT",
license="GNU Lesser General Public License, Version 3",
platforms="OS Independent",
packages=["obspyDMT", "obspyDMT.utils"],
# this is needed for "pip install instaseis==dev"
download_url="https://github.com/kasra-hosseini/obspyDMT/archive/master.zip",
classifiers=[
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
"Operating System :: MacOS",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics"],
entry_points={
'console_scripts': [
'obspyDMT = obspyDMT.obspyDMT:main',
],
}
)