-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (47 loc) · 1.29 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
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools", "setuptools_scm[toml]", "wheel"]
[project]
name = "RigExpert"
readme = "README.md"
description = "Draw Smith charts, VSWR graphs and more from RigExpert or NanoVNA .s1p files."
license = {file = "LICENSE"}
dynamic = ["version"]
authors = [
{ name = "Fred C." },
]
classifiers = [
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Telecommunications Industry",
"License :: OSI Approved :: BSD License",
"Operating System :: MacOS",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
requires-python = ">=3.10"
dependencies = [
"matplotlib",
"mypy",
"numpy",
"scikit-rf",
]
[project.optional-dependencies]
dev = [
"build",
"flake8",
"isort",
"pre-commit",
"pylint",
]
[tool.setuptools_scm]
write_to = "RigExpert/_version.py"
[project.urls]
Source = "https://github.com/0x9900/RigExpert"
Tracker = "https://github.com/0x9900/RigExpert/issues"
[project.scripts]
RigExpert = "RigExpert:main"
[tool.setuptools.packages.find]
include = ["RigExpert*"]