-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
44 lines (38 loc) · 1.26 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
[tool.poetry]
name = "pynanovna"
version = "1.0.2"
description = "A package to use a NanoVNA"
authors = ["Teo Bergkvist <bergkvist.teo@protonmail.com>"]
readme = "README.md"
license = "GPL-3.0-or-later"
# Point to the correct package location
packages = [{ include = "pynanovna", from = "src" }]
# Optional project metadata
homepage = "https://github.com/bergkvistteo/pynanovna"
repository = "https://github.com/bergkvistteo/pynanovna"
documentation = "https://pynanovna.readthedocs.io"
# Optional but helpful PyPI metadata
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
]
[tool.poetry.dependencies]
python = ">=3.9"
matplotlib = ">=3.6.2"
numpy = ">=1.26.4"
pyserial = ">=3.5"
scipy = ">=1.13.0"
[tool.poetry.group.docs]
optional = true
[tool.poetry.group.docs.dependencies]
sphinx = "^7.3.7"
sphinx-rtd-theme = "^2.0.0"
sphinx-autobuild = "^2024.4.16"
sphinx-autodoc-typehints = "^2.2.2"