-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (46 loc) · 853 Bytes
/
Copy pathpyproject.toml
File metadata and controls
51 lines (46 loc) · 853 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
[project]
name = "geocloak"
version = "0.1.0"
description = "GEO-CLoak: Geoeffectiveness Continual Learning or Active Knowledge"
readme = "README.md"
requires-python = ">=3.10,<3.13"
license = "MIT"
dependencies = [
"numpy<2",
"matplotlib",
"pandas<3",
"scipy",
"sympy",
"torch<2.3",
"torchvision<0.18",
"torchtext",
"pytorch-lightning",
"scikit-learn",
"h5py",
"Pillow",
"wandb",
"celluloid",
"pyproj",
"tables",
"astropy",
"zarr<3",
"netCDF4",
"ppigrf",
]
[project.optional-dependencies]
dev = [
"black",
"black[jupyter]",
"isort",
"flake8",
"pytest",
]
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["geocloak"]
[tool.black]
line-length = 88
[tool.isort]
profile = "black"