-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path#pyproject.toml
45 lines (37 loc) · 1.15 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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "delensalot"
version = "1.0"
authors = [
"Julien Carron <[email protected]>",
"Sebastian Belkner <[email protected]>",
]
description = "CMB lensing, and QE and iterative lensing reconstruction and delensing on curved-sky"
[tool.poetry]
readme = "README.md"
repository = "https://github.com/NextGenCMB/delensalot"
documentation = "https://github.com/NextGenCMB/delensalot/docs/"
requires-python = ">=3.7"
keywords = ["CMB", "Cosmology"]
license = "GPL-2.0"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
requests = ">=0.0.0"
numpy = ">=0.0.0"
pyfftw = ">=0.0.0"
healpy = ">=0.0.0"
logdecorator = ">=0.0.0"
psutil = ">=0.0.0"
ducc0 = ">=0.0.0"
python = "^3.7"
dynamic = ["version", "description"]
[project.scripts]
my-script = "my_package.module:function"
# ... other project metadata fields as specified in:
# https://packaging.python.org/en/latest/specifications/declaring-project-metadata/