-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
37 lines (34 loc) · 1.34 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
36
37
#!/usr/bin/python
# Image-Processing based Atmospheric River Tracking (IPART) algorithms
from setuptools import find_packages, setup
#from distutils.core import setup
setup(name='ipart',
version='3.5.0',
description='IPART is a Python package for the detection and tracking of atmospheric rivers from gridded IVT data using image-processing techniques.',
author='Guangzhi XU',
author_email='[email protected]',
url='https://github.com/ihesp/IPART',
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Natural Language :: English',
'Operating System :: POSIX :: Linux',
'Operating System :: MacOS',
'Operating System :: Microsoft :: Windows',
'Programming Language :: Python :: 3',
'Topic :: Scientific/Engineering :: Atmospheric Science'
],
install_requires=[
"numpy",
"scipy",
"netcdf4",
"pandas",
"scikit-image",
"networkx",
"matplotlib-base"
],
packages=find_packages(include=['ipart', 'ipart.*']),
license='GPL-3.0-or-later'
)