-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
99 lines (87 loc) · 2.24 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 = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "PyIBIS-AMI"
description = "Facilitates working directly with IBIS-AMI DLLs from the Python command prompt."
version = "6.2.0"
authors = [ {name = "David Banas", email = "[email protected]"}
, {name = "David Patterson"}
]
readme = "README.md"
requires-python = ">=3.9,<3.13"
license = {text = "BSD"}
dependencies = [
"chaco>=6.0.0",
"click>=8.1.3",
"empy>=3.3.4",
"importlib_resources",
"matplotlib>=3.6.1",
# "numpy>=1.25,<1.26",
"numpy>=1.26,<1.27",
"parsec>=3.15",
"scipy>=1.9",
]
keywords=["ibis-ami"]
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: System :: Emulators",
"Topic :: Utilities",
]
[project.urls]
Documentation = "https://pyibis-ami.readthedocs.io/en/latest/"
Wiki = "https://github.com/capn-freako/PyAMI/wiki"
GitHub = "https://github.com/capn-freako/PyAMI"
PyPi = "https://pypi.org/project/PyIBIS-AMI/"
[project.scripts]
ami-config = "pyibisami.ami.config:main"
run-tests = "pyibisami.tools.run_tests:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.black]
line-length = 119
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-vv"
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 = [
"chaco.*",
"click.*",
"em.*",
"enable.*",
"numpy.*",
"parsec.*",
"pyface.*",
"scipy.*",
"skrf.*",
"traits.*",
"traitsui.*"
]
ignore_missing_imports = true