-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 978 Bytes
/
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
""" docstring """
from setuptools import setup, find_packages
setup(name='read_and_visualize_abscal-his',
version='1.0',
description=str('reads the ABSCAL.HIS fiel and visualizes the results of '
+ 'the absolute calibration of the microwave radiometer '
+ 'HATPRO with liquid nitrogen'),
author='Andreas Foth',
author_email='[email protected]',
url='https://github.com/WillyWallace/read_and_visualize_abscal-his.git',
license='MIT',
packages=find_packages(),
python_requires='>=3.6',
install_requires=['numpy', 'xarray', 'datetime', 'matplotlib'],
classifiers=[
"Development Status :: 1 - Beta",
"Programming Language :: Python :: 3.6",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
],
)