forked from NCAR/PyConform
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·26 lines (22 loc) · 901 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
#!/usr/bin/env python
"""
PyConform -- Setup Script
Copyright 2017, University Corporation for Atmospheric Research
See the LICENSE.rst file for details
"""
from setuptools import setup
exec(open('source/pyconform/version.py').read())
setup(name='PyConform',
version=__version__,
description='Parallel Python NetCDF Dataset Standardization Tool',
author='Kevin Paul',
author_email='[email protected]',
url='https://github.com/NCAR/PyConform',
download_url='https://github.com/NCAR/PyConform/tarball/v' + __version__,
license='https://github.com/NCAR/PyConform/blob/master/LICENSE.rst',
packages=['pyconform'],
package_dir={'pyconform': 'source/pyconform'},
package_data={'pyconform': ['LICENSE.rst']},
scripts=['scripts/iconform', 'scripts/xconform', 'scripts/vardeps'],
install_requires=['asaptools', 'netCDF4', 'ply']
)