-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (38 loc) · 890 Bytes
/
pyproject.toml
File metadata and controls
46 lines (38 loc) · 890 Bytes
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
# SPDX-License-Identifier: Apache-2.0
# Copyright (c) 2026 Maurice Garcia
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pypnm-docsis-pma"
version = "0.0.0"
description = "DOCSIS OFDM profile effectiveness simulator (CMTS -> noise -> CM)."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "Apache-2.0" }
authors = [{ name = "Maurice Garcia" }]
dependencies = [
"numpy>=1.26",
"scipy>=1.11",
"numba>=0.59",
"pydantic>=2.7",
]
[project.optional-dependencies]
dev = [
"pytest>=8.0",
"ruff>=0.5",
"mypy>=1.8",
"matplotlib>=3.8",
"pandas>=2.2",
"mkdocs>=1.6",
"mkdocs-material>=9.5",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
[tool.ruff]
line-length = 132
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
include = ["pypnm_pma*"]