-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
23 lines (22 loc) · 870 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
from setuptools import setup
if __name__ == "__main__":
setup(name="lorenz_gan",
version="0.1",
description="Testbed for stochastic parameterizations of the Lorenz '96 model.",
author="David John Gagne",
author_email="dgagne@ucar.edu",
license="MIT",
url="https://github.com/djgagne/lorenz_gan",
packages=["lorenz_gan"],
install_requires=["numpy",
"scipy",
"matplotlib",
"xarray",
"netcdf4",
"tensorflow>=2.0",
"keras",
"numba",
"pandas",
"jupyter",
"scikit-learn",
"pyyaml"])