-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (35 loc) · 908 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
from setuptools import setup, find_packages
setup(
name="terrain-diffusion",
version="0.1.0",
packages=find_packages(),
install_requires=[
"accelerate>=0.34.2",
"catalogue>=2.0.10",
"click>=8.1.6",
"confection>=0.1.5",
"diffusers>=0.30.3",
"earthengine_api>=1.1.2",
"easydict>=1.13",
"ema_pytorch>=0.7.7",
"global_land_mask>=1.0.0",
"h5py>=3.12.1",
"lpips>=0.1.4",
"matplotlib>=3.9.2",
"networkx>=3.2.1",
"numpy>=2.1.3",
"Pillow>=11.0.0",
"safetensors>=0.4.5",
"schedulefree>=1.3",
"scipy>=1.14.1",
"tifffile>=2024.9.20",
"torch>=2.4.1",
"torchvision>=0.19.1",
"tqdm>=4.66.5",
],
entry_points={
'console_scripts': [
'terrain-diffusion=terrain_diffusion.__main__:cli',
],
},
)