-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (36 loc) · 994 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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
from setuptools import find_packages
from setuptools import setup
setup(
name="ai_land",
version="0.0.1",
author="Ewan Pinnington",
author_email="[email protected]",
description="Experimental land surface model emulator",
packages=find_packages(),
install_requires=[
"pyyaml",
"black",
"isort",
"flake8",
"pytest",
"cartopy",
"xarray[complete]>=2023.1.0",
"dask-jobqueue>=0.8.1",
"dask-mpi>=2022.4.0",
"distributed>=2023.1.1",
"torch>=2.2",
# "torch==2.2+cu118 --index-url https://download.pytorch.org/whl/cu118",
"scikit-learn",
"pytorch-lightning>=2.1.0",
"matplotlib>=3.7.1",
"torchinfo>=1.8.0",
"zarr>=2.14.2",
"mlflow",
"pynvml",
"mlflow-export-import>=1.2.0",
"pre-commit>=3.3.3",
# "torch-cluster",
"ecml-tools[data,provenance]>=0.2.0",
"earthkit",
],
)