-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
48 lines (42 loc) · 1.27 KB
/
pyproject.toml
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 = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["pons", "tools/netedit", "tools/ponsanim"]
[project]
name = "pons-dtn"
version = "0.1.5"
authors = [
{ name = "Lars Baumgaertner", email = "[email protected]" },
]
description = "The Python Opportunistic Network Simulator (PONS) is a discrete-event simulator for opportunistic/DTN networks."
readme = "README.md"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Science/Research",
"Topic :: Communications",
]
keywords = [
"opportunistic networks",
"discrete-event simulation",
"DTN",
"network simulation",
"networking",
"simulator",
"delay-tolerant networks",
"disruption-tolerant networks",
]
dependencies = ["networkx~=3.3", "simpy~=4.1.1", "pillow~=10.4.0"]
[project.optional-dependencies]
mp4 = ["opencv-python"]
[project.scripts]
ponsanim = "ponsanim.ponsanim:main"
[project.gui-scripts]
netedit = "netedit.netedit:main"
[project.urls]
Homepage = "https://github.com/gh0st42/pons"
Issues = "https://github.com/gh0st42/pons/issues"
Repository = "https://github.com/gh0st42/pons.git"