ObjectNat 0.1.0__tar.gz → 0.1.1__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.
Potentially problematic release.
This version of ObjectNat might be problematic. Click here for more details.
- {objectnat-0.1.0 → objectnat-0.1.1}/PKG-INFO +2 -1
- {objectnat-0.1.0 → objectnat-0.1.1}/pyproject.toml +2 -1
- {objectnat-0.1.0 → objectnat-0.1.1}/src/objectnat/__init__.py +1 -1
- {objectnat-0.1.0 → objectnat-0.1.1}/LICENSE.txt +0 -0
- {objectnat-0.1.0 → objectnat-0.1.1}/README.md +0 -0
- {objectnat-0.1.0 → objectnat-0.1.1}/src/objectnat/methods/__init__.py +0 -0
- {objectnat-0.1.0 → objectnat-0.1.1}/src/objectnat/methods/adjacency_matrix.py +0 -0
- {objectnat-0.1.0 → objectnat-0.1.1}/src/objectnat/methods/balanced_buildings.py +0 -0
- {objectnat-0.1.0 → objectnat-0.1.1}/src/objectnat/methods/cluster_points_in_polygons.py +0 -0
- {objectnat-0.1.0 → objectnat-0.1.1}/src/objectnat/methods/coverage_zones.py +0 -0
- {objectnat-0.1.0 → objectnat-0.1.1}/src/objectnat/methods/demands.py +0 -0
- {objectnat-0.1.0 → objectnat-0.1.1}/src/objectnat/methods/isochrones.py +0 -0
- {objectnat-0.1.0 → objectnat-0.1.1}/src/objectnat/methods/osm_graph.py +0 -0
- {objectnat-0.1.0 → objectnat-0.1.1}/src/objectnat/methods/provision.py +0 -0
- {objectnat-0.1.0 → objectnat-0.1.1}/src/objectnat/methods/visibility_analysis.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: ObjectNat
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.1
|
|
4
4
|
Summary: ObjectNat is an open-source library created for geospatial analysis created by IDU team
|
|
5
5
|
License: BSD-3-Clause
|
|
6
6
|
Author: Danila
|
|
@@ -22,6 +22,7 @@ Requires-Dist: pandarallel (>=1.6.5,<2.0.0)
|
|
|
22
22
|
Requires-Dist: pandas (>=2.2.0,<3.0.0)
|
|
23
23
|
Requires-Dist: population-restorator (>=0.2.3,<0.3.0)
|
|
24
24
|
Requires-Dist: provisio (>=0.1.7,<0.2.0)
|
|
25
|
+
Requires-Dist: scikit-learn (>=1.4.0,<2.0.0)
|
|
25
26
|
Requires-Dist: tqdm (>=4.66.2,<5.0.0)
|
|
26
27
|
Description-Content-Type: text/markdown
|
|
27
28
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[tool.poetry]
|
|
2
2
|
name = "ObjectNat"
|
|
3
|
-
version = "0.1.
|
|
3
|
+
version = "0.1.1"
|
|
4
4
|
description = "ObjectNat is an open-source library created for geospatial analysis created by IDU team"
|
|
5
5
|
license = "BSD-3-Clause"
|
|
6
6
|
authors = ["Danila <63115678+DDonnyy@users.noreply.github.com>"]
|
|
@@ -21,6 +21,7 @@ dongraphio = "^0.3.9"
|
|
|
21
21
|
provisio = "^0.1.7"
|
|
22
22
|
joblib = "^1.4.2"
|
|
23
23
|
pandarallel = "^1.6.5"
|
|
24
|
+
scikit-learn = "^1.4.0"
|
|
24
25
|
|
|
25
26
|
[tool.poetry.group.dev.dependencies]
|
|
26
27
|
black = "^24.2.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|