-
Notifications
You must be signed in to change notification settings - Fork 26
/
setup.py
33 lines (31 loc) · 1.16 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
import setuptools
from readgssi import _version
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="readgssi",
version=_version.version,
author="Ian Nesbitt",
author_email="[email protected]",
license='AGPL',
description="Python tool to read and plot Geophysical Survey Systems Incorporated (GSSI) radar data in DZT format",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://readgssi.readthedocs.org/",
packages=setuptools.find_packages(),
install_requires=['obspy', 'numpy', 'scipy', 'geopy', 'matplotlib', 'pandas', 'h5py', 'pynmea2', 'pytz'],
entry_points='''
[console_scripts]
readgssi=readgssi.readgssi:main
''',
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Framework :: Matplotlib",
"Topic :: Scientific/Engineering :: Physics",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Development Status :: 4 - Beta",
],
)