-
Notifications
You must be signed in to change notification settings - Fork 30
/
pyproject.toml
51 lines (46 loc) · 1.18 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
49
50
51
[tool.poetry]
name = "sem"
version = "0.3.9.1"
description = "A Simulation Execution Manager for ns-3"
authors = ["Davide Magrin <[email protected]>"]
license = "GPL-2.0-only"
readme = "README.md"
repository = "https://github.com/signetlabdei/sem"
homepage = "https://github.com/signetlabdei/sem"
keywords = ["ns-3", "simulation", "execution"]
[tool.poetry.dependencies]
python = ">=3.9,<4"
tqdm = "*"
gitpython = "*"
drmaa = "*"
tinydb = "^4.0.0"
xarray = "*"
# Numpy >=1.26.0 is needed to support Python >=3.12, which dropped distutils.
# See https://github.com/python-poetry/poetry/issues/7611#issuecomment-1793859449
numpy = ">=1.26.0"
pandas = "*"
click = "*"
salib = "^1.3.8"
[tool.poetry.group.dev.dependencies]
sphinx = "*"
pylint = "*"
sphinxcontrib-napoleon = "*"
pytest = "*"
pytest-cov = "*"
pytest-xdist = "*"
matplotlib = "*"
graphviz = "*"
scipy = "*"
pygments = "*"
importmagic = "*"
flake8 = "*"
check-manifest = "*"
seaborn = "*"
pyright = "^0.0.13"
[tool.poetry.scripts]
sem = 'sem:cli'
[build-system]
requires = ["setuptools", "poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
norecursedirs = [".svn", "sem", "examples", "tests/ns-3*"]