-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
62 lines (53 loc) · 1.69 KB
/
pyproject.toml
File metadata and controls
62 lines (53 loc) · 1.69 KB
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
[tool.poetry]
name = "nisync"
version = "0.2.1"
description = "NI-Sync Python API"
authors = ["NI <opensource@ni.com>"]
maintainers = ["NI <opensource@ni.com>"]
readme = "README.md"
repository = "https://github.com/ni/nisync-python"
license = "MIT"
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"Intended Audience :: Manufacturing",
"Intended Audience :: Science/Research",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"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 :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Instrument Drivers",
"Topic :: System :: Hardware",
]
include = ["nisync/*"]
[tool.poetry.dependencies]
python = "^3.9"
hightime = "*"
[tool.poetry.group.dev.dependencies]
# Code generation and formatting
black = "*"
mako = ">=1.3.2"
CppHeaderParser = "*"
# Linting
ni-python-styleguide = ">=0.4.0"
# Test
pytest = ">=8.2.2"
pytest-cov = ">=5.0.0"
pytest-mock = ">=3.14.0"
[tool.coverage.run]
data_file = "dist/.coverage"
[tool.pytest.ini_options]
addopts = "nisync/ tests/ --cov nisync --strict-markers --doctest-modules"
[tool.black]
line-length = 100
[tool.ni-python-styleguide]
application-import-names = "nisync"
extend_exclude = "nisync/_attributes.py,nisync/errors.py,nisync/_errorcodes.py,_library.py,enums.py,session.py"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"