-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
130 lines (121 loc) · 2.88 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
[project]
name = "cygrid"
dynamic = [
"version"
]
description = "cygrid: is a cython-powered convolution-based gridding module for astronomy"
readme = "README.rst"
authors = [
{ name = "Benjamin Winkel", email = "[email protected]" },
{ name = "Lars Flöer", email = "[email protected]" },
{ name = "Daniel Lenz", email = "[email protected]" },
]
license = { text = "GPLv3" }
requires-python = ">=3.8"
classifiers = [
"Intended Audience :: Science/Research",
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: C++",
"Programming Language :: Cython",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering :: Astronomy",
]
keywords = [
"astronomy",
"science",
]
dependencies = [
"astropy",
"numpy",
]
[project.urls]
Homepage = "https://pypi.org/project/cygrid/"
Documentation = "https://bwinkel.github.io/cygrid/"
Repository = "https://github.com/bwinkel/cygrid"
Issues = "https://github.com/bwinkel/cygrid/issues"
Changelog = "https://github.com/bwinkel/cygrid/CHANGES.rst"
[project.optional-dependencies]
test = [
"pytest>=7.0",
"pytest-astropy>=0.10",
"pytest-doctestplus",
"healpy",
]
recommended = [
"astroquery",
"healpy",
"scipy",
"matplotlib",
]
docs = [
"matplotlib",
"reproject",
"sphinx",
"sphinx-astropy[confv2]",
"sphinx-copybutton",
"pydata-sphinx-theme",
"pytest>=7.0",
]
[build-system]
requires = [
"setuptools",
"wheel",
"setuptools_scm",
"cython",
"numpy==1.13.1; python_version<'3.7'",
"numpy==1.14.5; python_version=='3.7'",
"numpy==1.18.1; python_version=='3.8'",
"numpy==1.20.3; python_version=='3.9'",
"numpy==1.21.6; python_version=='3.10'",
"numpy==1.23.4; python_version=='3.11'",
"numpy==1.26.4; python_version=='3.12'",
"extension-helpers",
"scipy"
]
build-backend = "setuptools.build_meta"
[tool.extension-helpers]
use_extension_helpers = true
[tool.setuptools]
include-package-data = true
license-files = ["licenses/*"]
[tool.setuptools.packages.find]
include = ["cygrid*"]
namespaces = true
[tool.setuptools.package-data]
"*" = [
"tests/data/*",
]
"cygrid" = ["*.cpp"]
[tool.setuptools_scm]
write_to = "cygrid/version.py"
[tool.pytest.ini_options]
minversion = "7.0"
testpaths = [
"cygrid",
"docs",
]
norecursedirs = [
"docs[\\/]_build",
"docs[\\/]generated",
"cygrid[\\/]extern",
"cygrid[\\/]_dev",
]
astropy_header = true
doctest_plus = "enabled"
text_file_format = "rst"
remote_data_strict = true
addopts = [
"--doctest-rst",
"-p no:legacypath",
]
doctest_optionflags = [
"NORMALIZE_WHITESPACE",
"ELLIPSIS",
"FLOAT_CMP",
]
doctest_norecursedirs = [
"*/setup_package.py",
]