parabellum 0.0.74__tar.gz → 0.0.76__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.
- {parabellum-0.0.74 → parabellum-0.0.76}/PKG-INFO +3 -5
- {parabellum-0.0.74 → parabellum-0.0.76}/pyproject.toml +3 -5
- {parabellum-0.0.74 → parabellum-0.0.76}/uv.lock +13 -60
- {parabellum-0.0.74 → parabellum-0.0.76}/.gitignore +0 -0
- {parabellum-0.0.74 → parabellum-0.0.76}/README.md +0 -0
- {parabellum-0.0.74 → parabellum-0.0.76}/main.py +0 -0
- {parabellum-0.0.74 → parabellum-0.0.76}/parabellum/__init__.py +0 -0
- {parabellum-0.0.74 → parabellum-0.0.76}/parabellum/env.py +0 -0
- {parabellum-0.0.74 → parabellum-0.0.76}/parabellum/geo.py +0 -0
- {parabellum-0.0.74 → parabellum-0.0.76}/parabellum/types.py +0 -0
- {parabellum-0.0.74 → parabellum-0.0.76}/parabellum/utils.py +0 -0
@@ -1,17 +1,17 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: parabellum
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.76
|
4
4
|
Summary: Parabellum environment for parallel warfare simulation
|
5
5
|
Author-email: Noah Syrkis <desk@syrkis.com>
|
6
6
|
Requires-Python: <3.12,>=3.11
|
7
7
|
Requires-Dist: cachier<4,>=3.1.2
|
8
8
|
Requires-Dist: cartopy<0.24,>=0.23.0
|
9
|
+
Requires-Dist: chex>=0.1.89
|
9
10
|
Requires-Dist: contextily<2,>=1.6.0
|
10
11
|
Requires-Dist: einops<0.9,>=0.8.0
|
11
12
|
Requires-Dist: equinox>=0.12.2
|
12
13
|
Requires-Dist: flashbax<0.2,>=0.1.2
|
13
14
|
Requires-Dist: flax<0.11,>=0.10.4
|
14
|
-
Requires-Dist: folium<0.18,>=0.17.0
|
15
15
|
Requires-Dist: geopy<3,>=2.4.1
|
16
16
|
Requires-Dist: jax-tqdm<0.4,>=0.3.1
|
17
17
|
Requires-Dist: jax<0.7,>=0.6.0
|
@@ -20,10 +20,8 @@ Requires-Dist: jaxtyping<0.3,>=0.2.33
|
|
20
20
|
Requires-Dist: navix<0.8,>=0.7.0
|
21
21
|
Requires-Dist: omegaconf<3,>=2.3.0
|
22
22
|
Requires-Dist: optax<0.3,>=0.2.4
|
23
|
-
Requires-Dist: osmnx
|
23
|
+
Requires-Dist: osmnx>=2.0.4
|
24
24
|
Requires-Dist: pandas<3,>=2.2.2
|
25
|
-
Requires-Dist: rasterio<2,>=1.3.10
|
26
|
-
Requires-Dist: stadiamaps<4,>=3.2.1
|
27
25
|
Requires-Dist: tqdm<5,>=4.66.4
|
28
26
|
Requires-Dist: wandb<0.20,>=0.19.7
|
29
27
|
Description-Content-Type: text/markdown
|
@@ -1,6 +1,6 @@
|
|
1
1
|
[project]
|
2
2
|
name = "parabellum"
|
3
|
-
version = "0.0.
|
3
|
+
version = "0.0.76"
|
4
4
|
description = "Parabellum environment for parallel warfare simulation"
|
5
5
|
authors = [{ name = "Noah Syrkis", email = "desk@syrkis.com" }]
|
6
6
|
requires-python = ">=3.11,<3.12"
|
@@ -8,15 +8,11 @@ readme = "README.md"
|
|
8
8
|
dependencies = [
|
9
9
|
"tqdm>=4.66.4,<5",
|
10
10
|
"geopy>=2.4.1,<3",
|
11
|
-
"osmnx==2.0.0b0",
|
12
|
-
"rasterio>=1.3.10,<2",
|
13
|
-
"folium>=0.17.0,<0.18",
|
14
11
|
"pandas>=2.2.2,<3",
|
15
12
|
"contextily>=1.6.0,<2",
|
16
13
|
"einops>=0.8.0,<0.9",
|
17
14
|
"jaxtyping>=0.2.33,<0.3",
|
18
15
|
"cartopy>=0.23.0,<0.24",
|
19
|
-
"stadiamaps>=3.2.1,<4",
|
20
16
|
"cachier>=3.1.2,<4",
|
21
17
|
"jax>=0.6.0,<0.7",
|
22
18
|
"optax>=0.2.4,<0.3",
|
@@ -28,6 +24,8 @@ dependencies = [
|
|
28
24
|
"jax-tqdm>=0.3.1,<0.4",
|
29
25
|
"equinox>=0.12.2",
|
30
26
|
"jaxkd>=0.1.0",
|
27
|
+
"chex>=0.1.89",
|
28
|
+
"osmnx>=2.0.4",
|
31
29
|
]
|
32
30
|
|
33
31
|
[dependency-groups]
|
@@ -203,18 +203,6 @@ css = [
|
|
203
203
|
{ name = "tinycss2" },
|
204
204
|
]
|
205
205
|
|
206
|
-
[[package]]
|
207
|
-
name = "branca"
|
208
|
-
version = "0.8.1"
|
209
|
-
source = { registry = "https://pypi.org/simple" }
|
210
|
-
dependencies = [
|
211
|
-
{ name = "jinja2" },
|
212
|
-
]
|
213
|
-
sdist = { url = "https://files.pythonhosted.org/packages/e8/1d/bec5cb6669b7bf98b632b20bbbb25200bdc44298e7a39d588b0028a78300/branca-0.8.1.tar.gz", hash = "sha256:ac397c2d79bd13af0d04193b26d5ed17031d27609a7f1fab50c438b8ae712390", size = 27743, upload-time = "2024-12-16T20:29:46.853Z" }
|
214
|
-
wheels = [
|
215
|
-
{ url = "https://files.pythonhosted.org/packages/f8/9d/91cddd38bd00170aad1a4b198c47b4ed716be45c234e09b835af41f4e717/branca-0.8.1-py3-none-any.whl", hash = "sha256:d29c5fab31f7c21a92e34bf3f854234e29fecdcf5d2df306b616f20d816be425", size = 26071, upload-time = "2024-12-16T20:29:43.692Z" },
|
216
|
-
]
|
217
|
-
|
218
206
|
[[package]]
|
219
207
|
name = "cachier"
|
220
208
|
version = "3.1.2"
|
@@ -732,22 +720,6 @@ wheels = [
|
|
732
720
|
{ url = "https://files.pythonhosted.org/packages/fb/f8/aaf70a427f7e17afc1877d69c610b6b0c5093dba5addb63fb6990944e989/flax-0.10.6-py3-none-any.whl", hash = "sha256:86a5f0ba0f1603c687714999b58a4e362e784a6d2dc5a510b18a8e7a6c729e18", size = 447094, upload-time = "2025-04-23T20:27:05.036Z" },
|
733
721
|
]
|
734
722
|
|
735
|
-
[[package]]
|
736
|
-
name = "folium"
|
737
|
-
version = "0.17.0"
|
738
|
-
source = { registry = "https://pypi.org/simple" }
|
739
|
-
dependencies = [
|
740
|
-
{ name = "branca" },
|
741
|
-
{ name = "jinja2" },
|
742
|
-
{ name = "numpy" },
|
743
|
-
{ name = "requests" },
|
744
|
-
{ name = "xyzservices" },
|
745
|
-
]
|
746
|
-
sdist = { url = "https://files.pythonhosted.org/packages/73/25/a11f642a63d1c9653e12b4bac27a147bb91bf97609881161723fa803bb01/folium-0.17.0.tar.gz", hash = "sha256:48385df9a3f6ceca23647c2e8d87850c8a6e05b40db63266e7b8c6d2d734d4c6", size = 104722, upload-time = "2024-06-16T15:22:46.964Z" }
|
747
|
-
wheels = [
|
748
|
-
{ url = "https://files.pythonhosted.org/packages/ae/6d/18a7546e1748ecdd6ed7cd00d3f183faf1df08bd4f5e5e0eb3e72458b862/folium-0.17.0-py2.py3-none-any.whl", hash = "sha256:14210d054e9afad6ebac037495508297d78805fcfa16f859fdee10bb7f85c2c1", size = 108413, upload-time = "2024-06-16T15:22:45.352Z" },
|
749
|
-
]
|
750
|
-
|
751
723
|
[[package]]
|
752
724
|
name = "fonttools"
|
753
725
|
version = "4.58.0"
|
@@ -803,7 +775,7 @@ wheels = [
|
|
803
775
|
|
804
776
|
[[package]]
|
805
777
|
name = "geopandas"
|
806
|
-
version = "1.
|
778
|
+
version = "1.1.1"
|
807
779
|
source = { registry = "https://pypi.org/simple" }
|
808
780
|
dependencies = [
|
809
781
|
{ name = "numpy" },
|
@@ -813,9 +785,9 @@ dependencies = [
|
|
813
785
|
{ name = "pyproj" },
|
814
786
|
{ name = "shapely" },
|
815
787
|
]
|
816
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
788
|
+
sdist = { url = "https://files.pythonhosted.org/packages/8c/76/e1960ba846f153ab109575242abf89dc98f8e057faa32f3decf4cce9247a/geopandas-1.1.1.tar.gz", hash = "sha256:1745713f64d095c43e72e08e753dbd271678254b24f2e01db8cdb8debe1d293d", size = 332655, upload-time = "2025-06-26T21:04:56.57Z" }
|
817
789
|
wheels = [
|
818
|
-
{ url = "https://files.pythonhosted.org/packages/
|
790
|
+
{ url = "https://files.pythonhosted.org/packages/0b/70/d5cd0696eff08e62fdbdebe5b46527facb4e7220eabe0ac6225efab50168/geopandas-1.1.1-py3-none-any.whl", hash = "sha256:589e61aaf39b19828843df16cb90234e72897e2579be236f10eee0d052ad98e8", size = 338365, upload-time = "2025-06-26T21:04:55.139Z" },
|
819
791
|
]
|
820
792
|
|
821
793
|
[[package]]
|
@@ -1619,11 +1591,11 @@ wheels = [
|
|
1619
1591
|
|
1620
1592
|
[[package]]
|
1621
1593
|
name = "networkx"
|
1622
|
-
version = "3.
|
1594
|
+
version = "3.5"
|
1623
1595
|
source = { registry = "https://pypi.org/simple" }
|
1624
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
1596
|
+
sdist = { url = "https://files.pythonhosted.org/packages/6c/4f/ccdb8ad3a38e583f214547fd2f7ff1fc160c43a75af88e6aec213404b96a/networkx-3.5.tar.gz", hash = "sha256:d4c6f9cf81f52d69230866796b82afbccdec3db7ae4fbd1b65ea750feed50037", size = 2471065, upload-time = "2025-05-29T11:35:07.804Z" }
|
1625
1597
|
wheels = [
|
1626
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1598
|
+
{ url = "https://files.pythonhosted.org/packages/eb/8d/776adee7bbf76365fdd7f2552710282c79a4ead5d2a46408c9043a2b70ba/networkx-3.5-py3-none-any.whl", hash = "sha256:0030d386a9a06dee3565298b4a734b68589749a544acbb6c412dc9e2489ec6ec", size = 2034406, upload-time = "2025-05-29T11:35:04.961Z" },
|
1627
1599
|
]
|
1628
1600
|
|
1629
1601
|
[[package]]
|
@@ -1720,7 +1692,7 @@ wheels = [
|
|
1720
1692
|
|
1721
1693
|
[[package]]
|
1722
1694
|
name = "osmnx"
|
1723
|
-
version = "2.0.
|
1695
|
+
version = "2.0.4"
|
1724
1696
|
source = { registry = "https://pypi.org/simple" }
|
1725
1697
|
dependencies = [
|
1726
1698
|
{ name = "geopandas" },
|
@@ -1730,9 +1702,9 @@ dependencies = [
|
|
1730
1702
|
{ name = "requests" },
|
1731
1703
|
{ name = "shapely" },
|
1732
1704
|
]
|
1733
|
-
sdist = { url = "https://files.pythonhosted.org/packages/
|
1705
|
+
sdist = { url = "https://files.pythonhosted.org/packages/c4/95/ea857a3898990f10f6b3b3b8ef1aad6e00d0638ee2791b09227a9f0a0767/osmnx-2.0.4.tar.gz", hash = "sha256:90ce2f82ecfe5b0db013b6fc35789efd09491a5493680005b02710ea0b6aaa9b", size = 87091, upload-time = "2025-06-11T05:13:36.065Z" }
|
1734
1706
|
wheels = [
|
1735
|
-
{ url = "https://files.pythonhosted.org/packages/
|
1707
|
+
{ url = "https://files.pythonhosted.org/packages/40/6d/55320ebac861e45500312dad82ad16014995b33d1f95ed1204045fce3dc1/osmnx-2.0.4-py3-none-any.whl", hash = "sha256:edf6b7514b8c554ab85b20e8c914716933b553d153a5d2fd284330b6974b72f5", size = 100474, upload-time = "2025-06-11T05:13:34.234Z" },
|
1736
1708
|
]
|
1737
1709
|
|
1738
1710
|
[[package]]
|
@@ -1785,17 +1757,17 @@ wheels = [
|
|
1785
1757
|
|
1786
1758
|
[[package]]
|
1787
1759
|
name = "parabellum"
|
1788
|
-
version = "0.0.
|
1760
|
+
version = "0.0.75"
|
1789
1761
|
source = { editable = "." }
|
1790
1762
|
dependencies = [
|
1791
1763
|
{ name = "cachier" },
|
1792
1764
|
{ name = "cartopy" },
|
1765
|
+
{ name = "chex" },
|
1793
1766
|
{ name = "contextily" },
|
1794
1767
|
{ name = "einops" },
|
1795
1768
|
{ name = "equinox" },
|
1796
1769
|
{ name = "flashbax" },
|
1797
1770
|
{ name = "flax" },
|
1798
|
-
{ name = "folium" },
|
1799
1771
|
{ name = "geopy" },
|
1800
1772
|
{ name = "jax" },
|
1801
1773
|
{ name = "jax-tqdm" },
|
@@ -1806,8 +1778,6 @@ dependencies = [
|
|
1806
1778
|
{ name = "optax" },
|
1807
1779
|
{ name = "osmnx" },
|
1808
1780
|
{ name = "pandas" },
|
1809
|
-
{ name = "rasterio" },
|
1810
|
-
{ name = "stadiamaps" },
|
1811
1781
|
{ name = "tqdm" },
|
1812
1782
|
{ name = "wandb" },
|
1813
1783
|
]
|
@@ -1821,12 +1791,12 @@ dev = [
|
|
1821
1791
|
requires-dist = [
|
1822
1792
|
{ name = "cachier", specifier = ">=3.1.2,<4" },
|
1823
1793
|
{ name = "cartopy", specifier = ">=0.23.0,<0.24" },
|
1794
|
+
{ name = "chex", specifier = ">=0.1.89" },
|
1824
1795
|
{ name = "contextily", specifier = ">=1.6.0,<2" },
|
1825
1796
|
{ name = "einops", specifier = ">=0.8.0,<0.9" },
|
1826
1797
|
{ name = "equinox", specifier = ">=0.12.2" },
|
1827
1798
|
{ name = "flashbax", specifier = ">=0.1.2,<0.2" },
|
1828
1799
|
{ name = "flax", specifier = ">=0.10.4,<0.11" },
|
1829
|
-
{ name = "folium", specifier = ">=0.17.0,<0.18" },
|
1830
1800
|
{ name = "geopy", specifier = ">=2.4.1,<3" },
|
1831
1801
|
{ name = "jax", specifier = ">=0.6.0,<0.7" },
|
1832
1802
|
{ name = "jax-tqdm", specifier = ">=0.3.1,<0.4" },
|
@@ -1835,10 +1805,8 @@ requires-dist = [
|
|
1835
1805
|
{ name = "navix", specifier = ">=0.7.0,<0.8" },
|
1836
1806
|
{ name = "omegaconf", specifier = ">=2.3.0,<3" },
|
1837
1807
|
{ name = "optax", specifier = ">=0.2.4,<0.3" },
|
1838
|
-
{ name = "osmnx", specifier = "
|
1808
|
+
{ name = "osmnx", specifier = ">=2.0.4" },
|
1839
1809
|
{ name = "pandas", specifier = ">=2.2.2,<3" },
|
1840
|
-
{ name = "rasterio", specifier = ">=1.3.10,<2" },
|
1841
|
-
{ name = "stadiamaps", specifier = ">=3.2.1,<4" },
|
1842
1810
|
{ name = "tqdm", specifier = ">=4.66.4,<5" },
|
1843
1811
|
{ name = "wandb", specifier = ">=0.19.7,<0.20" },
|
1844
1812
|
]
|
@@ -2625,21 +2593,6 @@ wheels = [
|
|
2625
2593
|
{ url = "https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695", size = 24521, upload-time = "2023-09-30T13:58:03.53Z" },
|
2626
2594
|
]
|
2627
2595
|
|
2628
|
-
[[package]]
|
2629
|
-
name = "stadiamaps"
|
2630
|
-
version = "3.2.1"
|
2631
|
-
source = { registry = "https://pypi.org/simple" }
|
2632
|
-
dependencies = [
|
2633
|
-
{ name = "pydantic" },
|
2634
|
-
{ name = "python-dateutil" },
|
2635
|
-
{ name = "typing-extensions" },
|
2636
|
-
{ name = "urllib3" },
|
2637
|
-
]
|
2638
|
-
sdist = { url = "https://files.pythonhosted.org/packages/4e/25/4387f7041d64807c387fe75a2507847541046fa8298a2c9a6abbea5da985/stadiamaps-3.2.1.tar.gz", hash = "sha256:e40c6e23bfb09f6c70333f7b59cfdf007566a5933dee094d129446217114a364", size = 132684, upload-time = "2024-08-16T09:05:11.424Z" }
|
2639
|
-
wheels = [
|
2640
|
-
{ url = "https://files.pythonhosted.org/packages/84/08/a0f398cbba51dfcd257aa97f75174288a81809c66ade48e1bc40e42dbce9/stadiamaps-3.2.1-py3-none-any.whl", hash = "sha256:78750eee3d10a40c0dc23bf53d1b293945bdf827576c49d583848e5112313393", size = 260821, upload-time = "2024-08-16T09:05:09.543Z" },
|
2641
|
-
]
|
2642
|
-
|
2643
2596
|
[[package]]
|
2644
2597
|
name = "svglib"
|
2645
2598
|
version = "1.5.1"
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|