-
Notifications
You must be signed in to change notification settings - Fork 55
/
pyproject.toml
107 lines (93 loc) · 2.69 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "PipBERT"
description = "Serial communication link bit error rate tester simulator, written in Python."
version = "6.2.1"
# dynamic = ["version"]
authors = [ {name = "David Banas", email = "[email protected]"}
, {name = "David Patterson"}
]
readme = "README.md"
requires-python = ">=3.9,<3.13"
license = {text = "BSD"}
dependencies = [
"kiwisolver",
"PyIBIS-AMI>=6.2",
"pyside6<6.7",
"pyyaml>=6",
"scikit-rf>=0.29",
"typing_extensions",
]
keywords=["bert", "communication", "simulator"]
classifiers=[
"Development Status :: 5 - Production/Stable",
"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.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"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.urls]
Wiki = "https://github.com/capn-freako/PyBERT/wiki"
Installation = "https://github.com/capn-freako/PyBERT/wiki/instant_gratification"
FAQ = "https://github.com/capn-freako/PyBERT/wiki/pybert_faq"
GitHub = "https://github.com/capn-freako/PyBERT"
PyPi = "https://pypi.org/project/PipBERT/"
[project.scripts]
pybert = "pybert.cli:cli"
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 119
[tool.isort]
# profile = "black"
known_first_party = ["pybert", "pyibisami"]
known_third_party = ["enable", "chaco"]
[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