-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
35 lines (33 loc) · 1.48 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
import setuptools
import versioneer
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="eurec4a_snd",
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
author="eurec4a folks",
author_email="",
description="Common EUREC4A sounding standard",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/observingClouds/eurec4a_snd",
packages=setuptools.find_packages(),
setup_requires=['setuptools-git-version'],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires='>=3.6',
install_requires=['pillow>=6.0.0', 'matplotlib>=3.1.0', 'basemap>=1.2.0',
'numpy>=1.15.0', 'netCDF4>=1.4.0', 'metpy>=0.10.0', 'tqdm>=4.0.0'],
entry_points={'console_scripts':
['sounding_converter=eurec4a_snd.L1_bufr:main',
'sounding_visualize=eurec4a_snd.make_quicklooks_rs41:main',
'sounding_skewT=eurec4a_snd.visualize.make_skewT_metpy:main',
'sounding_interpolate=eurec4a_snd.interpolate.batch_interpolate_soundings:main',
'sounding_converter_mwx=eurec4a_snd.L1_mwx:main'
]},
package_data={"eurec4a_snd": ["examples/data/*", "config/meta_information_template.ini", "config/mwx_config.json"]}
)