forked from LM-SAL/aiapy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
140 lines (124 loc) · 2.97 KB
/
pyproject.toml
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
[build-system]
requires = [
"setuptools",
"setuptools_scm[toml]",
"wheel",
]
build-backend = 'setuptools.build_meta'
[project]
name = "aiapy"
dynamic = ["version"]
description = "Python library for AIA data analysis."
readme = "README.rst"
requires-python = ">=3.10"
license = {file = "LICENSE.txt"}
keywords = [
"solar physics",
"solar",
"science",
"NASA",
"SDO",
"AIA",
"solar dynamics observatory",
"atmospheric imaging assembly",
]
authors = [
{email = "[email protected]"},
{name = "AIA Instrument Team @ LMSAL"}
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Astronomy",
]
dependencies = [
'sunpy[net,image,map]>=5.0',
]
[project.urls]
homepage = "https://aia.lmsal.com/"
documentation = "https://aiapy.readthedocs.io/en/stable/"
repository = "https://github.com/LM-SAL/aiapy"
changelog = "https://aiapy.readthedocs.io/en/stable/changelog.html"
[project.optional-dependencies]
all = ["aiapy"]
cupy = [
"cupy",
]
tests = [
"aiapy[all]",
"hissw",
"pytest",
"pytest-astropy",
"pytest-cov",
"pytest-xdist",
]
docs = [
"aiapy[all]",
"sphinx",
"sphinx-automodapi",
"sphinx-changelog",
"sphinx-copybutton",
"sphinx-design",
"sphinx-gallery",
"sphinx-hoverxref",
"sphinxext-opengraph",
"sunpy-sphinx-theme",
# Remove next line when fixed in towncrier; see https://github.com/twisted/towncrier/issues/528
"importlib-resources<6",
]
dev = ["aiapy[tests,docs]"]
[tool.setuptools]
packages = ["aiapy"]
[tool.setuptools_scm]
write_to = "aiapy/_version.py"
[tool.setuptools.exclude-package-data]
aiapy = ["aiapy._dev"]
[tool.coverage.run]
branch = true
omit = [
"*test_idl.py",
]
[tool.codespell]
ignore-words-list = "emiss"
[tool.towncrier]
package = "aiapy"
filename = "CHANGELOG.rst"
directory = "changelog/"
issue_format = "`#{issue} <https://github.com/LM-SAL/aiapy/pull/{issue}>`__"
title_format = "{version} ({project_date})"
[[tool.towncrier.type]]
directory = "breaking"
name = "Breaking Changes"
showcontent = true
[[tool.towncrier.type]]
directory = "deprecation"
name = "Deprecations"
showcontent = true
[[tool.towncrier.type]]
directory = "removal"
name = "Removals"
showcontent = true
[[tool.towncrier.type]]
directory = "feature"
name = "New Features"
showcontent = true
[[tool.towncrier.type]]
directory = "bugfix"
name = "Bug Fixes"
showcontent = true
[[tool.towncrier.type]]
directory = "doc"
name = "Documentation"
showcontent = true
[[tool.towncrier.type]]
directory = "trivial"
name = "Internal Changes"
showcontent = true