-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 967 Bytes
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 967 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
[build-system]
requires = ["setuptools>=75"]
build-backend = "setuptools.build_meta"
[project]
name = "standa"
version = "0.1.0"
description = "A collection of Python interfaces for communicating with standa controllers"
authors = [
{ name = "Elijah Anakalea-Buckley", email = "elijahab@caltech.edu" }
]
maintainers = [
{ name = "Elijah Anakalea-Buckley", email = "elijahab@caltech.edu" }
]
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"libximc",
"hardware_device_base@git+https://github.com/COO-Utilities/hardware_device_base"
]
[project.urls]
Repository = "https://github.com/COO-Utilities/standa"
[project.optional-dependencies]
dev = [
"pytest-mock",
"pytest",
"black",
"flake8"
]
[tool.pytest.ini_options]
pythonpath = [
"."
]
testpaths = ["tests"]
markers = [
"default: marks tests as default run set",
"unit: marks tests as unit tests",
"functional: marks tests as functional tests",
]