-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpyproject.toml
More file actions
118 lines (109 loc) · 2.61 KB
/
pyproject.toml
File metadata and controls
118 lines (109 loc) · 2.61 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
[project]
name = "acstools"
description = "Python Tools for HST ACS"
readme = {file = "README.rst", content-type = "text/x-rst"}
requires-python = ">=3.10"
authors = [
{ name = "Matt Davis" },
{ name = "Warren Hack" },
{ name = "Norman Grogin" },
{ name = "Pey Lian Lim" },
{ name = "Sara Ogaz" },
{ name = "Leonardo Ubeda" },
{ name = "Mihai Cara" },
{ name = "David Borncamp" },
{ name = "Nathan Miles" },
{ name = "Tyler Desjardins" },
{ name = "Jenna Ryon" },
{ name = "David Stark" },
{ name = "Gagandeep Anand" },
{ name = "Yotam Cohen" },
]
classifiers = [
"Intended Audience :: Science/Research",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["astronomy", "astrophysics", "calibration"]
dependencies = [
"numpy",
"astropy",
"requests",
"PyYAML",
]
license = "BSD-3-Clause"
license-files = ["LICENSE.md"]
dynamic = [
"version",
]
[project.urls]
"Bug Reports" = "https://github.com/spacetelescope/acstools/issues"
Source = "https://github.com/spacetelescope/acstools"
Help = "https://hsthelp.stsci.edu"
Documentation = "https://acstools.readthedocs.io"
[project.optional-dependencies]
all = [
"matplotlib",
"scipy",
"scikit-image",
"stsci.tools",
"stsci.imagestats",
"photutils",
"dask",
]
test = [
"pytest",
"pytest-astropy-header",
"pytest-remotedata",
"ci-watson",
]
docs = [
"sphinx",
"sphinx-automodapi",
"sphinx-rtd-theme",
"numpydoc",
]
[project.scripts]
acs_destripe = "acstools.acs_destripe:main"
acs_destripe_plus = "acstools.acs_destripe_plus:main"
[tool.setuptools]
zip-safe = false
include-package-data = false
[tool.setuptools.packages.find]
include = ["acstools*"]
namespaces = false
[tool.setuptools.package-data]
"acstools" = [
"data/*"
]
"acstools.tests" = [
"data/input/*.fits",
"data/truth/*.fits",
]
[build-system]
requires = ["setuptools>=30.3.0",
"setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_file = "acstools/version.py"
[tool.pytest.ini_options]
minversion = "5"
norecursedirs = [
"build",
"doc/build",
]
testpaths = [
"acstools",
"doc",
]
astropy_header = true
xfail_strict = true
filterwarnings = [
"error",
"ignore:numpy\\.ndarray size changed:RuntimeWarning",
"ignore:unclosed file:ResourceWarning",
]