-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
90 lines (83 loc) · 2.65 KB
/
Copy pathpyproject.toml
File metadata and controls
90 lines (83 loc) · 2.65 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
[build-system]
requires = ["setuptools>=69", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "toe-decoherence-validation"
version = "3.1.0"
description = "Empirical validation of the Theory of Everything (ToE) consistency relation using BK18+Planck2018+BAO data, three-channel joint analysis, and a growing suite of per-claim validation experiments."
readme = "README.md"
requires-python = ">=3.10"
license = { text = "Apache-2.0" }
authors = [
{ name = "Raman Marozau" }
]
keywords = [
"cosmology",
"theory-of-everything",
"decoherence",
"entanglement",
"consistency-relation",
"BK18",
"Planck-2018",
"Mukhanov-Sasaki",
"Bogoliubov",
"CMB",
"B-modes"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Astronomy",
"Topic :: Scientific/Engineering :: Physics"
]
dependencies = [
"numpy>=1.24",
"scipy>=1.10",
"matplotlib>=3.7",
]
[project.optional-dependencies]
mcmc = [
"cobaya>=3.3",
"camb>=1.5",
"getdist>=1.4",
]
dev = [
"pytest>=8",
"ruff>=0.5",
]
[project.urls]
Homepage = "https://github.com/morozow/toe-decoherence-validation"
Repository = "https://github.com/morozow/toe-decoherence-validation"
Issues = "https://github.com/morozow/toe-decoherence-validation/issues"
Documentation = "https://github.com/morozow/toe-decoherence-validation/blob/main/README.md"
[project.scripts]
toe-eval-bk18 = "toe_decoherence_validation.evaluate_bk18:main"
toe-eval-map = "toe_decoherence_validation.evaluate_bk18_map:main"
toe-joint = "toe_decoherence_validation.joint_analysis:main"
toe-run-mcmc = "toe_decoherence_validation.run_mcmc:main"
toe-analyze = "toe_decoherence_validation.analyze:main"
toe-exp03 = "experiments.exp03_consistency_relation.run_experiment:run_experiment"
toe-exp04 = "experiments.exp04_conservation_law.run_experiment:run_experiment"
toe-exp05 = "experiments.exp05_stability.run_experiment:run_experiment"
toe-exp06 = "experiments.exp06_power_spectra.run_experiment:run_experiment"
toe-exp11 = "experiments.exp11_quantum_gravity.run_experiment:run_experiment"
[tool.setuptools]
package-dir = {"" = "src"}
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
toe_decoherence_validation = ["plots/*.png"]
experiments = [
"*/data/*.csv",
"*/data/*.json",
"*/plots/*.png",
"*/RESULTS.txt",
"*/README.md",
]