forked from ni/nidaqmx-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (54 loc) · 1.92 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
[tool.poetry]
name = "nidaqmx"
version = "0.6.6"
license = "MIT"
description = "NI-DAQmx Python API"
authors = ["NI <[email protected]>"]
maintainers = ["Zach Hindes <[email protected]>", "Maxx Boehme <[email protected]>"]
readme = "README.rst"
repository = "https://github.com/ni/nidaqmx-python"
documentation = "https://nidaqmx-python.readthedocs.io"
keywords = ["nidaqmx", "nidaq", "daqmx", "daq"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Manufacturing",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"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 :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: System :: Hardware :: Hardware Drivers"
]
exclude = ["nidaqmx/tests"]
[tool.poetry.dependencies]
python = "^3.7"
numpy = [
{version="^1.20", python = "<3.10"},
# precompiled wheels only available in the 1.22+
{version="^1.22", python = "^3.10"}
]
six = "^1.16"
# This functionality was merged into python stdlib beginning in 3.8
importlib_metadata = {version="^4.10", python="~3.7"}
# Documentation, must be in main dependencies (but optional) list for
# readthedocs integration.
# See https://github.com/readthedocs/readthedocs.org/issues/4912.
Sphinx = {version="^4.4", optional=true}
sphinx_rtd_theme = {version="^1.0", optional=true}
[tool.poetry.extras]
docs = ["sphinx", "sphinx_rtd_theme"]
[tool.poetry.dev-dependencies]
# Test
pytest = "^6.2"
pykka = "^3.0"
tox = "^3.24"
[build-system]
requires = ["poetry>=1.1.12"]
build-backend = "poetry.masonry.api"