-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
97 lines (88 loc) · 2.13 KB
/
pyproject.toml
File metadata and controls
97 lines (88 loc) · 2.13 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
[build-system]
requires = [
"setuptools>=62.0.0",
"setuptools_scm[toml]>=8.0.1",
"wheel"
]
build-backend = 'setuptools.build_meta'
[project]
requires-python = ">=3.11"
name = "ARCCnet"
description = "Active Region Cutout Classification Network"
readme = {file = "README.rst", content-type="text/x-rst"}
license = "BSD-3-Clause"
license-files = ["LICENSE.rst"]
authors = [
{name="ARCAFF Team"},
{name="Shane Maloney", email = "[email protected]"}
]
dynamic = ["version"]
keywords = ["solar physics", "solar", "science", "machine learning", "space weather"]
classifiers = [
"Development Status :: 2 - Beta",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Physics"
]
dependencies = [
"aiapy ~= 0.7",
"sunpy[all]~=6.1",
"packaging>=23.0",
"scikit-learn~=1.3",
"platformdirs~=3.9",
"pyarrow",
"drms~=0.9",
"astropy~=7.0",
"pandas~=2.0",
"p_tqdm"
]
[project.optional-dependencies]
models = [
"torch~=2.6",
"pytorch-lightning",
"torchmetrics",
"seaborn",
"plotly",
"ultralytics",
"timm",
"comet_ml"
]
tests = [
"pytest",
"pytest-doctestplus",
"pytest-cov",
"pytest-mock",
"pytest-remotedata"
]
docs = [
"sphinx",
"sphinx-automodapi",
"pydata_sphinx_theme",
"sphinxcontrib-bibtex",
"myst_nb",
"linkify-it-py"
]
dev = ["arccnet[docs,tests]"]
[project.scripts]
arccnet-cli = "arccnet.cli.main:main"
[project.urls]
Homepage = "https://arcaff.eu"
"Source Code" = "https://github.com/ARCAFF/arccnet"
"Issue Tracker" = "https://github.com/ARCAFF/arccnet"
[tool.setuptools]
zip-safe = false
include-package-data = true
platforms = ["any"]
provides = ["arccnet"]
[tool.setuptools.packages.find]
include = ["arccnet*"]
exclude = ["arccnet._dev*"]
[tool.setuptools.package-data]
xrayvisim = []
[tool.setuptools_scm]
version_file = "arccnet/_version.py"