-
Notifications
You must be signed in to change notification settings - Fork 141
/
setup.py
24 lines (22 loc) · 1.16 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
import os
import setuptools
setuptools.setup(
name='nowcasting',
version="0.1.dev0",
author="Xingjian Shi, Zhihan Gao, Leonard Lausen, Hao Wang, Dit-Yan Yeung, Wang-chun Woo, Wai-kin Wong",
packages=setuptools.find_packages(),
description='Deep learning for precipitation nowcasting: A benchmark and a new model',
long_description=open(os.path.join(os.path.dirname(
os.path.abspath(__file__)), 'README.md')).read(),
license='MIT',
url='https://github.com/sxjscience/HKO-7',
install_requires=['numpy', 'scipy', 'matplotlib', 'pandas', 'moviepy', 'numba',
'pillow', 'six', 'easydict', 'pyyaml'],
classifiers=['Development Status :: 2 - Pre-Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: MIT License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Artificial Intelligence'],
)