-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (64 loc) · 1.77 KB
/
pyproject.toml
File metadata and controls
69 lines (64 loc) · 1.77 KB
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "cobi"
authors = [
{name = "Anto I. Lonappan", email = "antolonappan@icloud.com"}
]
maintainers = [
{name = "Anto I. Lonappan", email = "antolonappan@icloud.com"}
]
contributors = [
"Patricia Diego-Palazuelos",
"Carlos Hervías-Caimapo"
]
description = "Cosmic Birefringence Analysis Pipeline for Simons Observatory"
readme = "README.md"
license = {text = "MIT"}
keywords = ["cosmology", "cmb", "cosmic-birefringence", "simons-observatory", "polarization"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
requires-python = ">=3.8"
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/antolonappan/cobi"
Documentation = "https://cobi.readthedocs.io/"
Repository = "https://github.com/antolonappan/cobi"
Issues = "https://github.com/antolonappan/cobi/issues"
[project.optional-dependencies]
full = [
"pymaster>=2.0.0",
"pysm3>=3.4.0",
"camb>=1.4.0",
"ducc0>=0.30.0",
"emcee>=3.1.0",
"getdist>=1.4.0",
"mpi4py>=3.1.0",
"lenspyx>=1.0.0",
"pixell>=0.20.0",
]
docs = [
"sphinx>=5.0.0",
"sphinx-rtd-theme>=1.0.0",
"nbsphinx>=0.9.0",
"sphinx-autodoc-typehints>=1.19.0",
]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"black>=22.0.0",
"flake8>=5.0.0",
]
[tool.flit.module]
name = "cobi"