-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpyproject.toml
110 lines (88 loc) · 2.57 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
[project]
name = "queueing-tool"
description = "A queueing network simulator"
readme = "README.rst"
authors = [{name = "Daniel Jordon", email = "[email protected]"}]
version = "1.2.5"
license = {text = "MIT"}
requires-python = ">=2.7,!=3.0,!=3.1,!=3.2"
dependencies = [
"networkx>=1.9",
"numpy>=1.9",
'importlib-metadata; python_version<"3.8"',
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Scientific/Engineering :: Mathematics",
]
keywords = [
"queueing theory",
"queueing",
"simulation",
"queueing simulator",
"queueing network simulation",
"networks",
"queueing simulation",
]
[project.optional-dependencies]
plotting = ["matplotlib>=1.5"]
[project.urls]
"Documentation" = "https://queueing-tool.readthedocs.io/en/latest/"
"Homepage" = "https://github.com/djordon/queueing-tool"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.poetry]
name = "queueing-tool"
version = "1.2.5"
description = "A queueing network simulator"
authors = ["djordon <[email protected]>"]
[tool.poetry.dependencies]
python = ">=3.8,<3.12"
numpy = "^1.23.3"
networkx = "^2.8.6"
matplotlib = {version = "^3.6.0", optional = true}
importlib-metadata = {version = "^5.0.0", python = "<3.8"}
[tool.poetry.group.test.dependencies]
pytest = "^7.1.3"
pytest-cov = "^4.0.0"
pytest-sugar = "^0.9.5"
[tool.poetry.group.plotting.dependencies]
matplotlib = "^3.6.0"
[tool.poetry.group.dev.dependencies]
Cython = "^0.29.32"
ipdb = "^0.13.9"
ipython = "^8.5.0"
twine = "^4.0.1"
[tool.poetry.extras]
plotting = ["matplotlib"]
[tool.coverage.report]
exclude_lines = ["def __repr__"]
omit = [
"*/python?.?/*",
"*/site-packages/nose/*",
"*__init__*",
]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--doctest-modules --color=yes --capture=no"
doctest_optionflags = "NORMALIZE_WHITESPACE"
testpaths = [
"tests",
"queueing_tool",
]