forked from hephy-dd/comet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
36 lines (31 loc) · 706 Bytes
/
pyproject.toml
File metadata and controls
36 lines (31 loc) · 706 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
[project]
name = "comet"
description = "Control and Measurement Toolkit"
authors = [
{name = "Bernhard Arnold", email = "bernhard.arnold@oeaw.ac.at"},
]
readme = "README.md"
license = {text = "GPLv3"}
requires-python = ">=3.9"
dependencies = [
"PyVISA",
"PyVISA-py",
"PyVISA-sim",
"pyserial",
"pyusb",
"numpy",
"pint",
"schema",
"PyYAML",
]
dynamic = ["version"]
[project.urls]
Homepage = "https://hephy-dd.github.io/comet/"
Source = "https://github.com/hephy-dd/comet/"
[project.scripts]
comet-emulator = "comet.emulator.__main__:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "src/comet/__init__.py"