|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
"""Module setuptools script.""" |
|
|
|
from setuptools import setup |
|
|
|
description = ( |
|
"GraphCast: Learning skillful medium-range global weather forecasting" |
|
) |
|
|
|
setup( |
|
name="graphcast", |
|
version="0.1", |
|
description=description, |
|
long_description=description, |
|
author="DeepMind", |
|
license="Apache License, Version 2.0", |
|
keywords="GraphCast Weather Prediction", |
|
url="https://github.com/deepmind/graphcast", |
|
packages=["graphcast"], |
|
install_requires=[ |
|
"cartopy", |
|
"chex", |
|
"colabtools", |
|
"dask", |
|
"dm-haiku", |
|
"dm-tree", |
|
"jax", |
|
"jraph", |
|
"matplotlib", |
|
"numpy", |
|
"pandas", |
|
"rtree", |
|
"scipy", |
|
"trimesh", |
|
"typing_extensions", |
|
"xarray", |
|
], |
|
classifiers=[ |
|
"Development Status :: 3 - Alpha", |
|
"Intended Audience :: Science/Research", |
|
"License :: OSI Approved :: Apache Software License", |
|
"Operating System :: POSIX :: Linux", |
|
"Programming Language :: Python :: 3.10", |
|
"Programming Language :: Python :: 3.11", |
|
"Topic :: Scientific/Engineering :: Artificial Intelligence", |
|
"Topic :: Scientific/Engineering :: Atmospheric Science", |
|
"Topic :: Scientific/Engineering :: Physics", |
|
], |
|
) |
|
|