-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
59 lines (51 loc) · 1.37 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
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[project]
name = "Smokescreen"
description = "Smokescreen: DESC Blinding Unified Library. Based on the Muir et al. (2021) data-vector blinding method."
readme = "README.md"
requires-python = ">=3.12"
license = {file = "LICENSE"}
maintainers = [
{name = "Arthur Loureiro", email = "[email protected]"},
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dependencies = [
"numpy>=1.24.0",
"scipy>=1.9.0",
"astropy>=5.2.0",
"pytest>=7.2.5",
"sacc>=0.12",
"pyccl>=3.0.2",
"jsonargparse[signatures]>=4.0",
"pytest",
"pytest-cov",
"cryptography"
]
keywords = ["desc", "python", "blinding", "firecrown", "cosmology"]
dynamic = ["version"]
[project.optional-dependencies]
docs = [
"sphinx>=7.3.0",
"sphinxcontrib.datatemplates",
"sphinxcontrib-autoprogram",
"sphinx_rtd_theme",
]
[tool.setuptools.packages.find]
where = ["src"]
[tool.flake8]
max-line-length = 100
[project.urls]
Homepage = "https://github.com/LSSTDESC/Smokescreen"
Issues = "https://github.com/LSSTDESC/Smokescreen/issues"
# [tool.hatch]
# version.source = "vcs"
[tool.hatch.version]
path = "src/smokescreen/_version.py"
[project.scripts]
smokescreen = "smokescreen.__main__:main"