-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
111 lines (103 loc) · 2.84 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
[build-system]
build-backend = "setuptools.build_meta"
requires = [
"setuptools >=62.1 , != 71.0.1",
"setuptools_scm[toml] >=6.2",
"wheel >=0.34",
]
[project]
name = "XRTpy"
readme = "README.md"
keywords = ["Solar Physics", "x-ray", "Hinode", "XRT"]
description = "For analyzing data from the X-Ray Telescope (XRT) on the Hinode spacecraft."
license = {file = "LICENSE"}
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
]
# SPEC 0 recommends that packages in the scientific pythoniverse support
# versions of Python that have been released in the last ≤36 months
requires-python = ">=3.10"
dynamic = ["version"]
authors = [
{name = "Joy Velasquez", email = "joy.velasquez@cfa.harvard.edu"},
{name = "Jonathan Slavin", email = "jslavin@cfa.harvard.edu"},
{name = "Nick Murpy", email="namurphy@cfa.harvard.edu"},
{name = "Will Barnes"},
{name = "Nabil Freij", email="nabil.freij@gmail.com"},
{name = "Stuart Mumford"},
]
dependencies = [
"astropy >= 5.3.0",
"matplotlib >= 3.5.0",
"numpy >=1.23.5",
"scikit-image >= 0.19.0",
# !=1.10.0 due to https://github.com/scipy/scipy/issues/17718
"scipy >= 1.9.0 , != 1.10.0",
"sunpy[map] >= 5.0.0",
]
[project.optional-dependencies]
dev = [
"xrtpy[tests,docs]",
"nox >= 2022.8.7",
]
tests = [
"pytest >= 8.0.0",
"pytest-astropy",
"pytest-xdist >= 3.6.1",
]
docs = [
"pydata_sphinx_theme >= 0.15.0",
# Need pkg_resources for sphinxcontrib-bibtex
# and this comes from setuptools
# This is a bug upstream in the extension which
# has yet to be fixed.
"setuptools",
"sphinx >= 7.3.0",
"sphinx_automodapi >= 0.17.0",
"sphinx-copybutton >= 0.5.2",
"sphinx-gallery >= 0.16.0",
"sphinx-hoverxref >= 1.4.0",
"sphinx-issues >= 4.1.0",
"sphinxcontrib-bibtex >= 2.6.2",
"sphinxext-opengraph>=0.6.0",
"sunpy[net] >= 5.0.0",
]
[project.urls]
Documentation = "https://xrtpy.readthedocs.io"
Repository = "https://github.com/HinodeXRT/xrtpy"
Issues = "https://github.com/HinodeXRT/xrtpy/issues"
Changelog = "https://xrtpy.readthedocs.io/en/stable/changelog/index.html"
[tool.setuptools]
packages = ["xrtpy"]
[tool.setuptools.package-data]
"xrtpy" = ["data/*"]
"xrtpy.response" = ["data/*.txt", "data/*.geny"]
"xrtpy.response.tests" = ["data/*/*/*.txt"]
[tool.setuptools_scm]
write_to = "xrtpy/version.py"
[tool.codespell]
skip = "*.genx,*.geny,*.png,*egg*,.git,.hypothesis,.nox,.tox,.idea,__pycache__,_build"
ignore-words-list = """
4rd,
aas,
bu,
circularly,
egde,
fo,
nd,
ons,
sav,
sav,
te,
tne,
ue
"""