-
Notifications
You must be signed in to change notification settings - Fork 103
/
pyproject.toml
69 lines (60 loc) · 1.76 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
[build-system]
requires = ["setuptools>=40.6.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pyadi-iio"
dynamic = ["version", "readme"]
description = "Analog Devices python interfaces for hardware with Industrial I/O drivers"
license = {text = "ADI BSD"}
classifiers = [
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules"]
requires-python = ">=3.7"
authors = [
{name = "Travis Collins", email="[email protected]"},
]
maintainers = [
{name = "Travis Collins", email="[email protected]"},
{name = "Analog Devices, Inc"}
]
dependencies = [
'numpy >= 1.20',
'pylibiio >= 0.25',
]
[tool.setuptools.dynamic]
version = {attr = "adi.__version__"}
readme = {file = "README.md", content-type = "text/markdown"}
[tool.setuptools.packages.find]
where = ["."]
include = ["adi"]
exclude = ["test*"]
namespaces = true
[project.optional-dependencies]
jesd = [
"paramiko"
]
[project.urls]
homepage = "https://analogdevicesinc.github.io/pyadi-iio/"
documentation = "https://analogdevicesinc.github.io/pyadi-iio/"
repository = "https://github.com/analogdevicesinc/pyadi-iio"
[tool.isort]
multi_line_output=3
include_trailing_comma="True"
force_grid_wrap=0
use_parentheses="True"
line_length=88
[tool.mypy]
ignore_missing_imports="true"
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--custom-hw-map=test/emu/hardware_map.yml --emu-xml-dir=test/emu/devices"
testpaths = [
"test",
]