-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (58 loc) · 2.03 KB
/
pyproject.toml
File metadata and controls
62 lines (58 loc) · 2.03 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
[build-system]
requires = ["setuptools>=77", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "matter_framework"
version = "4.1.1"
description = "We present a technical validation for complete, testable cosmological framework in which the Universe begins in a globally coherent quantum state and the first local act of decoherence inside the closed system creates its own environment."
readme = { file = "README.rst", content-type = "text/x-rst" }
requires-python = ">=3.8"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [
{ name = "Raman Marozau", email = "raman@worktif.com" }
]
keywords = ["Self-generated environment", "environment", "quantum", "decoherence", "entanglement", "stress–energy", "primordial power spectrum"]
classifiers = [
"Typing :: Typed",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Operating System :: OS Independent",
"Operating System :: MacOS",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows"
]
dependencies = [
"contourpy~=1.3.3",
"cycler~=0.12.1",
"fonttools~=4.60.1",
"kiwisolver~=1.4.9",
"matplotlib~=3.10.7",
"numpy~=2.3.3",
"packaging~=25.0",
"pandas~=2.3.3",
"pillow~=11.3.0",
"pip~=23.2.1",
"pyparsing~=3.2.5",
"pytz~=2025.2",
"setuptools~=68.2.0",
"six~=1.17.0",
"tzdata~=2025.2",
"wheel~=0.41.20",
"setuptools~=65.5.1",
"pytest~=8.3.5",
]
[tool.setuptools]
packages = ["matter_framework"]
[project.urls]
Homepage = "https://github.com/worktif/matter_framework"
Documentation = "https://github.com/worktif/matter_framework#README.md"
[project.optional-dependencies]
dev = ["pytest", "flake8", "black", "coverage", " pytest-mock"]