-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (37 loc) · 901 Bytes
/
pyproject.toml
File metadata and controls
40 lines (37 loc) · 901 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
[build-system]
requires = ["setuptools", "wheel", "numpy"]
build-backend = "setuptools.build_meta"
[project]
name = "S15lib"
version = "0.2.0"
description = "S-Fifteen Python Library"
authors = [
{ name = "Mathias Seidler" },
]
maintainers = [
{ name = "S-Fifteen Instruments" },
]
readme = "README.md"
requires-python = ">=3.7"
dependencies = [
"psutil",
"pyserial",
"numpy",
"fpfind; python_version >= '3.8'", # noqa: E501
]
dynamic = ["license"] # using legacy setup.py assignment as workaround
#license = { text = "MIT" } # syntax for setuptools < 77 (Python <=3.8), Feb 2026 deprecation
#license = "MIT" # supported only in setuptools >=77 (Python >=3.9)
[project.optional-dependencies]
dev = [
"pre-commit",
"Cython",
]
apps = [
"PyQt5",
"Pyqtgraph",
"configargparse",
]
[tool.setuptools.packages.find]
include = ["S15lib*"]
namespaces = false