-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (42 loc) · 1.12 KB
/
pyproject.toml
File metadata and controls
45 lines (42 loc) · 1.12 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "ns.py"
version = "0.4.5"
description = "ns.py: a pythonic discrete-event network simulator"
readme = "README.md"
requires-python = ">=3.13"
license = { file = "LICENSE" }
authors = [
{ name = "TL-System" }
]
keywords = [
"discrete-event simulator",
"computer networking",
]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.13",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Education",
"Topic :: Scientific/Engineering",
]
dependencies = [
"simpy",
"networkx",
"pyyaml",
"matplotlib"
]
[project.urls]
Homepage = "https://github.com/TL-System/ns.py"
Repository = "https://github.com/TL-System/ns.py"
[tool.hatch.build.targets.wheel]
packages = ["ns"]