radar-sdk 0.1.0__tar.gz

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.
@@ -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,29 @@
1
+ # radar-sdk
2
+
3
+ Python SDK for radar modeling, geometry, array configuration, and visualization tooling.
4
+
5
+ ## Installation
6
+
7
+ ### Prerequisites
8
+
9
+ - Python 3.13 or newer
10
+ - `uv` (recommended) or `pip`
11
+
12
+ ### Install with uv (recommended)
13
+
14
+ 1. Sync dependencies:
15
+ - `uv sync`
16
+ 2. Activate the virtual environment:
17
+ - `source .venv/bin/activate`
18
+
19
+ ### Install with pip
20
+
21
+ 1. Create and activate a virtual environment.
22
+ 2. Install the package:
23
+ - `pip install -e .`
24
+
25
+ ## Documentation
26
+
27
+ - Documentation website: [https://grabt234.github.io/radar-sdk/](https://grabt234.github.io/radar-sdk/)
28
+ - Local docs source: `docs/source/`
29
+
@@ -0,0 +1,74 @@
1
+ [project]
2
+ name = "radar-sdk"
3
+ version = "0.1.0"
4
+ description = "Add your description here"
5
+ readme = "README.md"
6
+ requires-python = ">=3.13"
7
+ dependencies = [
8
+ "kaleido>=1.3.0",
9
+ "manim>=0.20.1",
10
+ "myst-parser>=5.1.0",
11
+ "nbconvert>=7.17.1",
12
+ "nbformat>=5.10.4",
13
+ "nbsphinx>=0.9.8",
14
+ "pandas>=3.0.2",
15
+ "plotly>=6.7.0",
16
+ "poethepoet>=0.44.0",
17
+ "polars>=1.40.0",
18
+ "pydantic>=2.13.4",
19
+ "pyright>=1.1.409",
20
+ "ruff>=0.15.11",
21
+ "scipy>=1.17.1",
22
+ "sphinx>=9.1.0",
23
+ "sphinx-autodoc2>=0.5.0",
24
+ "sphinx-collections>=0.3.1",
25
+ "sphinx-external-toc>=1.1.0",
26
+ "sphinx-rtd-theme>=3.1.0",
27
+ ]
28
+
29
+ [build-system]
30
+ requires = ["setuptools>=61.0"]
31
+ build-backend = "setuptools.build_meta"
32
+
33
+ [tool.setuptools]
34
+ packages = ["radar"]
35
+
36
+ [tool.ruff]
37
+ line-length = 88
38
+
39
+ [tool.ruff.format]
40
+ quote-style = "double"
41
+
42
+ [tool.poe.tasks]
43
+ format = "ruff format"
44
+ check = "ruff check --fix"
45
+ types = "pyright"
46
+ lint = ["format", "check", "types"]
47
+ docs_remove_old_examples = "rm -rf docs/examples"
48
+ docs_add_new_examples = "cp -r ./examples ./docs/examples"
49
+ docs_remove_old_videos = "rm -rf docs/videos"
50
+ docs_add_new_videos = "cp -r ./videos ./docs/videos"
51
+ docs_relink_examples_and_videos = [
52
+ "docs_remove_old_examples",
53
+ "docs_remove_old_videos",
54
+ "docs_add_new_examples",
55
+ "docs_add_new_videos",
56
+ ]
57
+ docs_make_build = "bash -lc 'cd docs && make html'"
58
+ docs_make_clean = "bash -lc 'cd docs && make clean'"
59
+ docs_all = [
60
+ "docs_make_clean",
61
+ "docs_relink_examples_and_videos",
62
+ "docs_make_build",
63
+ ]
64
+ build_docs = "bash -lc 'cd docs && make html'"
65
+
66
+
67
+ [dependency-groups]
68
+ dev = [
69
+ "ipykernel>=7.2.0",
70
+ "pip>=26.1.1",
71
+ "nbsphinx>=0.9.8",
72
+ "pydata-sphinx-theme>=0.17.1",
73
+ "sphinx>=9.1.0",
74
+ ]
@@ -0,0 +1,3 @@
1
+ from . import components, utils
2
+
3
+ __all__ = ["components", "utils"]
@@ -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,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ radar/__init__.py
4
+ radar_sdk.egg-info/PKG-INFO
5
+ radar_sdk.egg-info/SOURCES.txt
6
+ radar_sdk.egg-info/dependency_links.txt
7
+ radar_sdk.egg-info/requires.txt
8
+ radar_sdk.egg-info/top_level.txt
@@ -0,0 +1,19 @@
1
+ kaleido>=1.3.0
2
+ manim>=0.20.1
3
+ myst-parser>=5.1.0
4
+ nbconvert>=7.17.1
5
+ nbformat>=5.10.4
6
+ nbsphinx>=0.9.8
7
+ pandas>=3.0.2
8
+ plotly>=6.7.0
9
+ poethepoet>=0.44.0
10
+ polars>=1.40.0
11
+ pydantic>=2.13.4
12
+ pyright>=1.1.409
13
+ ruff>=0.15.11
14
+ scipy>=1.17.1
15
+ sphinx>=9.1.0
16
+ sphinx-autodoc2>=0.5.0
17
+ sphinx-collections>=0.3.1
18
+ sphinx-external-toc>=1.1.0
19
+ sphinx-rtd-theme>=3.1.0
@@ -0,0 +1 @@
1
+ radar
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+