-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
114 lines (99 loc) · 2.78 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
# SPDX-FileCopyrightText: 2021 - 2023 Constantine Evans <qslib@mb.costi.net>
#
# SPDX-License-Identifier: EUPL-1.2
[build-system]
requires = ["setuptools>=68", "setuptools_scm[toml]>=5", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
version_scheme = "no-guess-dev"
version_file = "src/qslib/version.py"
[tool.setuptools.packages.find]
where = ["src"]
[tool.isort]
profile = "black"
[project]
name = "qslib"
requires-python = ">=3.9"
description = "Library for communicating with and using the QuantStudio qPCR machine, intended for non-qPCR uses."
license = { text = "EUPL-1.2" }
readme = "README.md"
authors = [{ name = "Constantine Evans", email = "const@costi.net" }]
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: European Union Public Licence 1.2 (EUPL 1.2)",
"Natural Language :: English",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Chemistry",
"Topic :: Scientific/Engineering :: Physics",
"Typing :: Typed",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Framework :: Matplotlib",
"Framework :: Jupyter",
]
dynamic = ["version"]
dependencies = [
"pandas >= 2",
"numpy >= 1",
"tabulate >= 0.8",
"pyparsing >= 3",
"typeguard >= 2",
"nest_asyncio >= 1.5",
"click >=8.0,<9.0",
"click-aliases",
"typing-extensions >= 4",
"toml",
"pint",
"attrs",
"matplotlib",
"markdown",
"dacite",
]
[project.optional-dependencies]
monitor = [
"aiohttp~=3.9.0b0; python_version >= '3.12'",
"matrix-nio",
"influxdb_client",
"lxml"]
docs = [
"myst_parser",
"influxdb_client",
"lxml",
"sphinx-click",
"sphinx-autodoc-typehints",
"sphinx >= 2.4",
"qslib[monitor]"
]
testing = [
"setuptools",
"pytest",
"pytest-cov",
"pytest-asyncio",
"hypothesis",
"qslib[monitor]",
]
[project.urls]
homepage = "https://github.com/cgevans/qslib/"
documentation = "https://qslib.readthedocs.org/"
source = "https://github.com/cgevans/qslib/"
changelog = "https://github.com/cgevans/qslib/blob/main/CHANGELOG.md"
tracker = "https://github.com/cgevans/qslib/issues"
download = "https://github.com/cgevans/qslib/releases"
[project.scripts]
qs-monitor = "qslib.monitor_cli:run"
qslib = "qslib.cli:cli"
[tool.pytest.ini_options]
addopts = "--cov qslib --cov-report term-missing --verbose"
norecursedirs = ["dist", "build", ".tox"]
testpaths = ["tests"]
[tool.mypy]
python_version = "3.10"
# warn_return_any = true
warn_unused_configs = true
ignore_missing_imports = true
[tool.ruff]
line-length = 120