-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpyproject.toml
More file actions
77 lines (72 loc) · 1.95 KB
/
pyproject.toml
File metadata and controls
77 lines (72 loc) · 1.95 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "phased-array-modeling"
version = "1.3.1"
description = "Comprehensive Python library for phased array antenna modeling and visualization"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "John Hodge", email = "jah70@vt.edu"}
]
keywords = [
"phased array",
"antenna",
"beamforming",
"radar",
"electromagnetics",
"array factor",
"radiation pattern"
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Intended Audience :: Education",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Physics",
]
requires-python = ">=3.8"
dependencies = [
"numpy>=1.20.0",
"matplotlib>=3.5.0",
"scipy>=1.7.0",
]
[project.optional-dependencies]
plotting = [
"plotly>=5.0.0",
]
full = [
"plotly>=5.0.0",
"seaborn>=0.11.0",
]
dev = [
"pytest>=7.0.0",
"pytest-cov>=4.0.0",
"plotly>=5.0.0",
"seaborn>=0.11.0",
]
docs = [
"sphinx>=7.0.0",
"pydata-sphinx-theme>=0.14.0",
"sphinx-copybutton>=0.5.0",
]
[project.urls]
Homepage = "https://github.com/jman4162/Phased-Array-Antenna-Model"
Documentation = "https://phased-array-antenna-model.readthedocs.io/"
Repository = "https://github.com/jman4162/Phased-Array-Antenna-Model"
Issues = "https://github.com/jman4162/Phased-Array-Antenna-Model/issues"
[tool.setuptools.packages.find]
include = ["phased_array*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
python_files = ["test_*.py"]
addopts = "-v --tb=short"