-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (39 loc) · 906 Bytes
/
pyproject.toml
File metadata and controls
44 lines (39 loc) · 906 Bytes
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
[project]
name = "nidaq"
authors = [
{ name="Alex Striff", email="abs299@cornell.edu" },
]
description = "Control a X-Series NI DAQ (USB-6363)."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"gitpython",
"pyyaml",
"numpy",
"nidaqmx",
"zhinst",
"npy_append_array",
]
dynamic = [
"version",
]
[project.urls]
Homepage = "https://github.com/nowacklab/nidaq"
Issues = "https://github.com/nowacklab/nidaq/issues"
[project.scripts]
daqiv = "nidaq:nidaq"
[build-system]
requires = ["setuptools", "versioneer[toml]==0.29"]
build-backend = "setuptools.build_meta"
[tool.versioneer]
VCS = "git"
style = "pep440"
versionfile_source = "nidaq/_version.py"
versionfile_build = "nidaq/_version.py"
tag_prefix = ""
parentdir_prefix = "nidaq-"