-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.37 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (43 loc) · 1.37 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
[build-system]
requires = ["setuptools>=64", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "energy-framework"
version = "2.1.0"
description = "Energy Framework"
authors = [
{ name = "Arcticoder" }
]
readme = "README.md"
license = "Unlicense"
requires-python = ">=3.8"
keywords = [
"quantum-gravity", "energy-enhancement", "dynamic-backreaction",
"adaptive-systems", "field-manipulation", "spacetime-geometry"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"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"
]
dependencies = [
# Add your core dependencies here
]
[project.urls]
Documentation = "https://github.com/energy-framework/energy/docs"
"Bug Reports" = "https://github.com/energy-framework/energy/issues"
Source = "https://github.com/energy-framework/energy"
[project.scripts]
energy-framework = "src.core.cli:main"
dynamic-backreaction = "src.core.dynamic_backreaction:main"
[project.optional-dependencies]
dev = ["pytest>=6.0", "pytest-cov>=2.0", "black>=21.0"]
test = ["pytest>=6.0", "pytest-cov>=2.0"]
[tool.setuptools.packages.find]
where = ["src"]
include = ["energy_framework*", "core*"]