forked from djgagne/deepsky
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
22 lines (21 loc) · 796 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
from setuptools import setup
if __name__ == "__main__":
setup(name="deepsky",
version="0.1",
description="Deep learning on storm and random field data",
author="David John Gagne",
author_email="[email protected]",
license="MIT",
url="https://github.com/djgagne/deepsky",
packages=["deepsky"],
install_requires=["matplotlib",
"numpy",
"scipy",
"pandas",
"xarray",
"tensorflow",
"keras",
"netcdf4",
"numba",
"scikit-learn",
"pyyaml"])