-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
75 lines (65 loc) · 1.67 KB
/
Copy pathpyproject.toml
File metadata and controls
75 lines (65 loc) · 1.67 KB
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
[project]
name = "sdofmv2"
version = "0.2.0"
description = "Solar phenomena prediction models"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "Joseph Gallego", email = "joaggi@gmail.com"},
{name = "Daniela Martin", email = "dmartinvega@gmail.com"},
{name = "Jinsu Hong", email = "jinsuhong.knight@gmail.com"},
]
keywords = ["foundation model", "solar physics", "deep learning", "space weather"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
]
dependencies = [
"torch>=2.5.1",
"lightning>=2.6.0",
"numpy>=2.3.5",
"pandas>=2.3.3",
"transformers>=4.57.3",
"sunpy>=7.0.4",
"astropy>=6.0",
"timm>=1.0.22",
"einops>=0.8.1",
"hydra-core>=1.3.2",
"wandb>=0.23.1",
]
[project.optional-dependencies]
docs = [
"sphinx",
"sphinx-rtd-theme",
"myst-parser",
]
dev = [
"pytest>=8.0.0",
"pytest-cov>=4.0.0",
]
[project.urls]
Repository = "https://github.com/Joaggi/sdofmv2"
Issues = "https://github.com/Joaggi/sdofmv2/issues"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
target-version = "py311"
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "B", "C4", "SIM"]
ignore = ["E501"]
[tool.black]
line-length = 100
target-version = ["py311"]
[tool.basedpyright]
typeCheckingMode = "basic"
pythonVersion = "3.11"