-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
37 lines (32 loc) · 1 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
# pyproject.toml
[project]
name = "applyaf"
version = "2.0.1"
description = "Apply antenna factors and cable loss to spectrum analyzer measurements"
readme = "README.md"
authors = [{ name = "Matthew Rankin", email = "[email protected]" }]
requires-python = ">=3.12"
dependencies = ["numpy>=2.2.0"]
classifiers = [
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'License :: OSI Approved :: MIT License',
'Development Status :: 5 - Production/Stable',
'Operating System :: OS Independent',
'Intended Audience :: Developers',
'Topic :: Software Development :: Libraries :: Python Modules',
]
[project.urls]
Homepage = "https://github.com/questrail/applyaf"
Issues = "https://github.com/questrail/applyaf/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.pyright]
venvPath = "."
venv = ".venv"
include = ["src"]
[dependency-groups]
dev = ["pytest>=8.3.4"]