-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
63 lines (58 loc) · 1.23 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
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "src/powerbox/_version.py"
parentdir_prefix_version = "powerbox-"
fallback_version = "0.0.0"
[project]
name="powerbox"
authors=[
{name = "Steven Murray", email = "[email protected]"}
]
description="Create arbitrary boxes with isotropic power spectra"
license= {text= "MIT"}
requires-python = ">=3.9"
keywords=["power-spectrum", "signal processing"]
dependencies = [
"numpy>1.6.2"
]
classifiers = [
"Programming Language :: Python :: 3",
]
dynamic = ["readme", "version"]
[project.urls]
repository="https://github.com/steven-murray/powerbox"
documentation="https://powerbox.readthedocs.io"
[tool.setuptools.dynamic]
readme = {file = ["README.rst"]}
[project.optional-dependencies]
tests = [
"wheel",
"flake8",
"pytest",
"pytest-cov",
"scipy",
]
docs = [
"sphinx",
"numpydoc",
"nbsphinx",
"ipykernel",
"pandoc",
"sphinx_rtd_theme",
"sphinx-automodapi==0.7",
"matplotlib",
"hmf",
"packaging", # required for camb
]
dev = [
"powerbox[tests,docs,fftw]",
"pre-commit"
]
fftw = [
'pyfftw'
]
all = [
"powerbox[dev]"
]