-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (26 loc) · 810 Bytes
/
setup.py
File metadata and controls
31 lines (26 loc) · 810 Bytes
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
from pathlib import Path
from setuptools import find_packages, setup
BASE_DIR = Path(__file__).parent
README = (BASE_DIR / "README.md").read_text(encoding="utf-8")
setup(
name="lightning-unet-template",
version="0.1.0",
description="A learning-oriented PyTorch Lightning U-Net template for ERA5 meteorology.",
long_description=README,
long_description_content_type="text/markdown",
author="Codex",
package_dir={"": "src"},
packages=find_packages(where="src"),
include_package_data=True,
python_requires=">=3.10",
install_requires=[
"torch>=2.2.0",
"torchvision>=0.17.0",
"pytorch-lightning>=2.2.0",
"wandb>=0.17.0",
"pyyaml>=6.0.1",
"numpy>=1.26.0",
"xarray>=2024.1.0",
"netcdf4>=1.6.5",
],
)