Skip to content

Commit 14363ad

Browse files
committed
added poetry and license
1 parent 869111d commit 14363ad

File tree

4 files changed

+67
-1
lines changed

4 files changed

+67
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Poetry
2+
poetry.lock
3+
14
# IDE
25
.idea
36

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright 2020 Python Packaging Authority
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Leaf 🌱
1+
# LEAF 🌱
22

33
A simulator for **L**arge **E**nergy-**A**ware **F**og computing environments.
44
LEAF enables energy consumption modeling of distributed, heterogeneous, and resource-constrained infrastructure that executes complex application graphs.

pyproject.toml

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
[tool.poetry]
2+
name = "leaf"
3+
version = "0.1.0"
4+
description = "A simulator for Large Energy-Aware Fog computing environments."
5+
authors = ["Philipp Wiesner <[email protected]>"]
6+
license = "MIT"
7+
repository = "https://github.com/dos-group/leaf"
8+
readme = "README.md"
9+
keywords = ["simulation", "modeling", "fog computing", "energy consumption", "edge computing"]
10+
classifiers = [
11+
"Development Status :: 3 - Alpha",
12+
"Intended Audience :: Education",
13+
"Intended Audience :: Science/Research",
14+
"License :: OSI Approved :: MIT License",
15+
"Operating System :: OS Independent",
16+
"Programming Language :: Python",
17+
"Programming Language :: Python :: 3",
18+
"Programming Language :: Python :: 3.6",
19+
"Programming Language :: Python :: 3.7",
20+
"Programming Language :: Python :: 3.8",
21+
"Programming Language :: Python :: 3.9",
22+
"Topic :: Education",
23+
"Topic :: Scientific/Engineering",
24+
"Topic :: Scientific/Engineering :: Information Analysis",
25+
"Topic :: Software Development :: Libraries :: Python Modules",
26+
"Topic :: System :: Distributed Computing",
27+
"Typing :: Typed"
28+
]
29+
30+
[tool.poetry.dependencies]
31+
python = "^3.7.9"
32+
simpy = "^4.0.0"
33+
networkx = "^2.5"
34+
tqdm = "^4.0.0"
35+
numpy = "^1.20.0"
36+
pandas = "^1.2.1"
37+
38+
[tool.poetry.dev-dependencies]
39+
40+
[build-system]
41+
requires = ["poetry-core>=1.0.0"]
42+
build-backend = "poetry.core.masonry.api"

0 commit comments

Comments
 (0)