-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
99 lines (87 loc) · 2.41 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
[build-system]
requires = [
"Cython",
"setuptools>=45",
"swig",
]
build-backend = "setuptools.build_meta"
[project]
name = "PyChOpMarg"
description = "Python implementation of COM, as per IEEE 802.3-22 Annex 93A/178A."
version = "2.2.1"
authors = [{name = "David Banas", email = "[email protected]"}]
urls = { documentation = "https://pychopmarg.readthedocs.io/en/latest/"}
readme = "README.md"
requires-python = ">=3.10,<3.14"
license = {text = "BSD3"}
dependencies = [
"click",
"numpy",
"scikit-rf>=0.29",
"typing_extensions", # SciKit-RF requires this, but doesn't include it itself.
]
keywords=["com", "channel", "margin"]
classifiers=[
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Intended Audience :: Telecommunications Industry",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Adaptive Technologies",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Electronic Design Automation (EDA)",
"Topic :: Scientific/Engineering :: Visualization",
"Topic :: System :: Emulators",
"Topic :: System :: Networking",
"Topic :: Utilities"
]
[project.scripts]
pychopmarg = "pychopmarg.cli:cli"
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 119
[tool.isort]
# profile = "black"
known_first_party = ["pychopmarg"]
known_third_party = ["numpy", "scipy", "scikit-rf"]
[tool.docformatter]
wrap-summaries = 0
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-vv --durations=3"
xfail_strict=true
[tool.pylint.master]
fail-under = 9.0
[tool.pylint.messages_control]
disable = [
"invalid-name",
"line-too-long",
]
[tool.pylint.format]
max-line-length = 119
[tool.pydocstyle]
ignore = [
"D105", # Missing docstring in magic method
"D107", # Missing docstring in __init__
]
[[tool.mypy.overrides]]
module = [
"scipy.*",
"skrf.*",
"chaco.*",
"enable.*",
"pyface.*",
"traits.*",
"traitsui.*"
]
ignore_missing_imports = true