-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (35 loc) · 835 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
setup(
name="diff_plonk",
version="0.1",
description="Diffusion Geolocalization package for PLONK models",
author="Nicolas Dufour",
python_requires=">=3.10",
packages=["plonk"],
install_requires=[
"torch",
"torchvision",
"numpy",
"pandas",
"transformers",
"accelerate",
"geoopt",
"geos",
"scipy==1.13.1",
"einops",
"torchdiffeq",
],
include_package_data=True,
extras_require={
"train": [
"wandb",
"hydra-core",
"pytorch-lightning",
"scikit-learn",
"reverse_geocoder",
"matplotlib",
"webdataset==0.2.57",
],
"demo": ["streamlit", "streamlit-extras", "plotly"],
},
)