-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
87 lines (79 loc) · 1.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
[build-system]
build-backend = "hatchling.build"
requires = [
"hatch-vcs",
"hatchling",
]
[project]
authors = [
{email = "n.tessore@ucl.ac.uk", name = "Nicolas Tessore"},
]
classifiers = [
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 or later (LGPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Scientific/Engineering :: Astronomy",
]
dependencies = [
"convolvecl",
"coroutines",
"fitsio",
"healpy",
"numba",
"numpy",
]
description = "Harmonic-space statistics on the sphere"
dynamic = [
"version",
]
license = "LGPL-3.0-or-later"
name = "heracles"
readme = "README.md"
requires-python = ">=3.9"
[project.optional-dependencies]
all = [
"ducc0",
"rich",
]
docs = [
"furo",
"ipython",
"matplotlib",
"nbsphinx",
"numpydoc",
"sphinx",
"sphinxcontrib-katex",
]
test = [
"ducc0",
"pytest",
"pytest-cov",
"pytest-rerunfailures",
]
[project.scripts]
heracles = "heracles.cli:main"
[project.urls]
Documentation = "https://heracles.readthedocs.io/"
Homepage = "https://github.com/heracles-ec/heracles"
Issues = "https://github.com/heracles-ec/heracles/issues"
[tool.hatch]
build.hooks.vcs.version-file = "heracles/_version.py"
version.source = "vcs"
[tool.pytest.ini_options]
addopts = "--color=yes -v"
testpaths = [
"tests",
]
[tool.ruff]
include = ["heracles/**/*.py", "pyproject.toml", "tests/**/*.py"]
target-version = "py39"
[tool.tomlsort]
all = true
spaces_indent_inline_array = 4
trailing_comma_inline_array = true
overrides."project.classifiers".inline_arrays = false