-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
37 lines (34 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
37 lines (34 loc) · 1.19 KB
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
[project]
name = "python-vor"
authors = [
{ name="Luca Bennati", email="lucabennati1996@gmail.com" }
]
description = "A small library to calculate the bearing of a VOR signal from a WAV file."
readme = "README.md"
license-files = [ "LICENSE", "CODE_OF_CONDUCT.md", "README.md", "CONTRIBUTING.md" ]
keywords = ["vor", "bearing", "airports", "location", "navigation", "signal processing"]
requires-python = ">=3.8"
dependencies = [
"scipy == 1.16.0",
"numpy == 2.3.1"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
]
version = "v0.0.0"
[project.urls]
Homepage = "https://github.com/iu2frl/python_vor"
Source = "https://github.com/iu2frl/python_vor"
Issues = "https://github.com/iu2frl/python_vor/issues"
[build-system]
requires = ["setuptools", "scipy==1.16.0", "numpy == 2.3.1", "wheel"]
build-backend = "setuptools.build_meta"
# Define entry points
[project.entry-points."python_vor.python_vor"]