|
| 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