-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
73 lines (65 loc) · 1.94 KB
/
pyproject.toml
File metadata and controls
73 lines (65 loc) · 1.94 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "distributed-resource-optimization"
version = "0.1.0"
description = "Distributed resource optimization algorithms — COHDA, ADMM, and averaging consensus"
authors = [{name = "Rico Schrage"}]
readme = "README.md"
requires-python = ">=3.10"
license = {text = "MIT"}
keywords = ["distributed", "optimization", "COHDA", "ADMM", "consensus", "multi-agent", "energy"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT 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 :: Mathematics",
"Framework :: AsyncIO",
]
dependencies = [
"numpy>=1.24",
"scipy>=1.10",
"cvxpy>=1.3",
]
[project.optional-dependencies]
mango = [
"mango-agents>=2.0",
]
dev = [
"pytest>=7.0",
"pytest-asyncio>=0.21",
"pytest-cov>=4.0",
"ruff>=0.4",
"mango-agents>=2.0",
]
docs = [
"sphinx>=7.0",
"furo>=2024.1.29",
"sphinx-copybutton>=0.5",
"sphinx-design>=0.5",
"mango-agents>=2.0",
]
[project.urls]
Homepage = "https://github.com/Digitalized-Energy-Systems/mango-optimization"
Documentation = "https://digitalized-energy-systems.github.io/mango-optimization/"
Repository = "https://github.com/Digitalized-Energy-Systems/mango-optimization"
Issues = "https://github.com/Digitalized-Energy-Systems/mango-optimization/issues"
[tool.hatch.build.targets.wheel]
packages = ["distributed_resource_optimization"]
[tool.pytest.ini_options]
asyncio_mode = "auto"
testpaths = ["tests"]
[tool.ruff]
line-length = 100
[tool.ruff.lint]
select = ["E", "F", "W", "I"]
ignore = ["E501"]
[tool.coverage.run]
source = ["distributed_resource_optimization"]
omit = ["tests/*"]