radar-sdk 0.1.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
radar/__init__.py
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: radar-sdk
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Add your description here
|
|
5
|
+
Requires-Python: >=3.13
|
|
6
|
+
Description-Content-Type: text/markdown
|
|
7
|
+
Requires-Dist: kaleido>=1.3.0
|
|
8
|
+
Requires-Dist: manim>=0.20.1
|
|
9
|
+
Requires-Dist: myst-parser>=5.1.0
|
|
10
|
+
Requires-Dist: nbconvert>=7.17.1
|
|
11
|
+
Requires-Dist: nbformat>=5.10.4
|
|
12
|
+
Requires-Dist: nbsphinx>=0.9.8
|
|
13
|
+
Requires-Dist: pandas>=3.0.2
|
|
14
|
+
Requires-Dist: plotly>=6.7.0
|
|
15
|
+
Requires-Dist: poethepoet>=0.44.0
|
|
16
|
+
Requires-Dist: polars>=1.40.0
|
|
17
|
+
Requires-Dist: pydantic>=2.13.4
|
|
18
|
+
Requires-Dist: pyright>=1.1.409
|
|
19
|
+
Requires-Dist: ruff>=0.15.11
|
|
20
|
+
Requires-Dist: scipy>=1.17.1
|
|
21
|
+
Requires-Dist: sphinx>=9.1.0
|
|
22
|
+
Requires-Dist: sphinx-autodoc2>=0.5.0
|
|
23
|
+
Requires-Dist: sphinx-collections>=0.3.1
|
|
24
|
+
Requires-Dist: sphinx-external-toc>=1.1.0
|
|
25
|
+
Requires-Dist: sphinx-rtd-theme>=3.1.0
|
|
26
|
+
|
|
27
|
+
# radar-sdk
|
|
28
|
+
|
|
29
|
+
Python SDK for radar modeling, geometry, array configuration, and visualization tooling.
|
|
30
|
+
|
|
31
|
+
## Installation
|
|
32
|
+
|
|
33
|
+
### Prerequisites
|
|
34
|
+
|
|
35
|
+
- Python 3.13 or newer
|
|
36
|
+
- `uv` (recommended) or `pip`
|
|
37
|
+
|
|
38
|
+
### Install with uv (recommended)
|
|
39
|
+
|
|
40
|
+
1. Sync dependencies:
|
|
41
|
+
- `uv sync`
|
|
42
|
+
2. Activate the virtual environment:
|
|
43
|
+
- `source .venv/bin/activate`
|
|
44
|
+
|
|
45
|
+
### Install with pip
|
|
46
|
+
|
|
47
|
+
1. Create and activate a virtual environment.
|
|
48
|
+
2. Install the package:
|
|
49
|
+
- `pip install -e .`
|
|
50
|
+
|
|
51
|
+
## Documentation
|
|
52
|
+
|
|
53
|
+
- Documentation website: [https://grabt234.github.io/radar-sdk/](https://grabt234.github.io/radar-sdk/)
|
|
54
|
+
- Local docs source: `docs/source/`
|
|
55
|
+
|
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
radar/__init__.py,sha256=HuvbaqTn9kXkjKd0PAHwo0z8PWPiHjkG6WZp1S6z4QI,67
|
|
2
|
+
radar_sdk-0.1.0.dist-info/METADATA,sha256=cmdYPe7g_xm4fRfpPriza597Zdtd5lnzTJwtUsq6EIg,1387
|
|
3
|
+
radar_sdk-0.1.0.dist-info/WHEEL,sha256=aeYiig01lYGDzBgS8HxWXOg3uV61G9ijOsup-k9o1sk,91
|
|
4
|
+
radar_sdk-0.1.0.dist-info/top_level.txt,sha256=VIFJLDx61DSVXquVd0x_9AzlRvtorG2rliRe8Tw1Wl4,6
|
|
5
|
+
radar_sdk-0.1.0.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
radar
|