-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (33 loc) · 942 Bytes
/
Copy pathpyproject.toml
File metadata and controls
33 lines (33 loc) · 942 Bytes
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
[project]
name = "doa_py"
version = "0.5.0"
description = "DOA estimation algorithms implemented in Python"
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
authors = [{ name = "Qian Xu", email = "xuq3196@outlook.com" }]
maintainers = [{ name = "Qian Xu", email = "xuq3196@outlook.com" }]
keywords = [
"doa",
"direction of arrival",
"doa estimation",
"array signal processing",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
urls = { Homepage = "https://github.com/zhiim/doa_py" }
dependencies = [
"cvxpy>=1.5.3",
"matplotlib>=3.9.2",
"numpy>=2.1.1",
"scikit-image>=0.24.0",
"scipy>=1.14.1",
"typing-extensions>=4.15.0",
]