-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
33 lines (31 loc) · 996 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
26
27
28
29
30
31
32
33
#!/usr/bin/env python
from setuptools import setup
setup(
name='mpl2nc',
version='1.4.2',
description='Convert Sigma Space Micro Pulse Lidar (MPL) data files to NetCDF',
author='Peter Kuma',
author_email='[email protected]',
license='MIT',
py_modules=['mpl2nc'],
entry_points={
'console_scripts': ['mpl2nc=mpl2nc:main'],
},
data_files=[('share/man/man1', ['mpl2nc.1'])],
install_requires=[
'numpy',
'netCDF4>=1.2.9',
'ds-format>=4.1.0',
],
keywords=['sigmaspace', 'mpl', 'lidar', 'netcdf'],
url='https://github.com/peterkuma/mpl2nc',
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',
]
)