-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
33 lines (32 loc) · 1.03 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, find_packages
setup(
name='mrr2c',
version='3.0.0',
packages=find_packages(),
py_modules=['mrr2c'],
entry_points={
'console_scripts': ['mrr2c=mrr2c:main'],
},
description='Convert Metek MRR-2 micro rain radar data files to NetCDF',
author='Peter Kuma',
author_email='[email protected]',
data_files=[('share/man/man1', ['mrr2c.1'])],
install_requires=[
'pydash>=4.0.3',
'numpy>=1.12.1',
'ds-format>=4.0.1',
'aquarius-time>=0.3.0',
'cftime>=1.5.1',
],
keywords=['metek', 'radar', 'mrr-2', 'netcdf'],
url='https://github.com/peterkuma/mrr2c',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Atmospheric Science',
],
)