-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
71 lines (59 loc) · 2.1 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "qt3utils"
version = "1.1.2dev0"
description = "A package for performing experiments in the QT3 lab at UW."
readme = "README.md"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["qt3", "confocal scan", "nidaqmx", "piezo", "stage", "control", "electron spin control"]
authors = [
{name = "G. Adam Cox", email = "gadamc@gmail.com" },
]
maintainers = [
{name = "G. Adam Cox", email = "gadamc@gmail.com" },
{name = "Maxwell Parsons", email = "mfpars@uw.edu " },
]
classifiers = [
"Development Status :: 5 - Production/Stable",
# Indicate who your project is intended for
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Physics",
"Topic :: Scientific/Engineering",
# Pick your license as you wish
"License :: OSI Approved :: BSD License",
# Specify the Python versions you support here. In particular, ensure
# that you indicate you support Python 3. These classifiers are *not*
# checked by "pip install". See instead "python_requires" below.
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3 :: Only",
]
dependencies = [
"nidaqmx>=0.6.3",
"numpy>=1.21.2",
"matplotlib>=3.4.3",
"scipy>=1.7.1",
"h5py>=3.3.0",
"qcsapphire>=1.0.1",
"qt3rfsynthcontrol>=1.0.1",
"nipiezojenapy>=1.0.4",
"pulseblaster>=1.0.1",
"PyYAML>=6.0.1",
"pythonnet>=3.0.3"
]
[project.urls]
"Homepage" = "https://github.com/qt3uw/qt3utils"
"Source" = "https://github.com/qt3uw/qt3utils"
"Bug Tracker" = "https://github.com/qt3uw/qt3utils/issues"
"Changelog" = "https://github.com/qt3uw/qt3utils/releases"
[project.scripts]
qt3scope = "qt3utils.applications.qt3scope.main:main"
qt3scan = "qt3utils.applications.qt3scan.main:main"
qt3pb = "qt3utils.applications.qt3pb.main:main"
[tool.setuptools.package-data]
"qt3utils.applications.controllers" = ["*.yaml"]