saterys 0.2.7__tar.gz → 0.2.8__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.
Files changed (33) hide show
  1. {saterys-0.2.7/saterys.egg-info → saterys-0.2.8}/PKG-INFO +12 -5
  2. {saterys-0.2.7 → saterys-0.2.8}/pyproject.toml +4 -4
  3. {saterys-0.2.7 → saterys-0.2.8/saterys.egg-info}/PKG-INFO +12 -5
  4. {saterys-0.2.7 → saterys-0.2.8}/LICENSE +0 -0
  5. {saterys-0.2.7 → saterys-0.2.8}/MANIFEST.in +0 -0
  6. {saterys-0.2.7 → saterys-0.2.8}/README.md +0 -0
  7. {saterys-0.2.7 → saterys-0.2.8}/saterys/app.py +0 -0
  8. {saterys-0.2.7 → saterys-0.2.8}/saterys/cli.py +0 -0
  9. {saterys-0.2.7 → saterys-0.2.8}/saterys/nodes/NDVI.py +0 -0
  10. {saterys-0.2.7 → saterys-0.2.8}/saterys/nodes/NDWI.py +0 -0
  11. {saterys-0.2.7 → saterys-0.2.8}/saterys/nodes/PCA.py +0 -0
  12. {saterys-0.2.7 → saterys-0.2.8}/saterys/nodes/hello.py +0 -0
  13. {saterys-0.2.7 → saterys-0.2.8}/saterys/nodes/input.py +0 -0
  14. {saterys-0.2.7 → saterys-0.2.8}/saterys/nodes/script.py +0 -0
  15. {saterys-0.2.7 → saterys-0.2.8}/saterys/nodes/sum.py +0 -0
  16. {saterys-0.2.7 → saterys-0.2.8}/saterys/static/assets/ContrastTheme-8vl10reL.js +0 -0
  17. {saterys-0.2.7 → saterys-0.2.8}/saterys/static/assets/Controls-BuZt2rJO.js +0 -0
  18. {saterys-0.2.7 → saterys-0.2.8}/saterys/static/assets/DrawerController-CunOJ5Gd.js +0 -0
  19. {saterys-0.2.7 → saterys-0.2.8}/saterys/static/assets/DrawerController-ZXfKNTdC.css +0 -0
  20. {saterys-0.2.7 → saterys-0.2.8}/saterys/static/assets/Icon-BZoXfbBu.js +0 -0
  21. {saterys-0.2.7 → saterys-0.2.8}/saterys/static/assets/Minimap-6vF3teR8.js +0 -0
  22. {saterys-0.2.7 → saterys-0.2.8}/saterys/static/assets/ThemeToggle-CmShuKPJ.js +0 -0
  23. {saterys-0.2.7 → saterys-0.2.8}/saterys/static/assets/index-CjC_xNd3.css +0 -0
  24. {saterys-0.2.7 → saterys-0.2.8}/saterys/static/assets/index-CwCTxci7.js +0 -0
  25. {saterys-0.2.7 → saterys-0.2.8}/saterys/static/assets/vite-C4kziZTZ.svg +0 -0
  26. {saterys-0.2.7 → saterys-0.2.8}/saterys/static/index.html +0 -0
  27. {saterys-0.2.7 → saterys-0.2.8}/saterys.egg-info/SOURCES.txt +0 -0
  28. {saterys-0.2.7 → saterys-0.2.8}/saterys.egg-info/dependency_links.txt +0 -0
  29. {saterys-0.2.7 → saterys-0.2.8}/saterys.egg-info/entry_points.txt +0 -0
  30. {saterys-0.2.7 → saterys-0.2.8}/saterys.egg-info/requires.txt +0 -0
  31. {saterys-0.2.7 → saterys-0.2.8}/saterys.egg-info/top_level.txt +0 -0
  32. {saterys-0.2.7 → saterys-0.2.8}/setup.cfg +0 -0
  33. {saterys-0.2.7 → saterys-0.2.8}/setup.py +0 -0
@@ -1,12 +1,12 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: saterys
3
- Version: 0.2.7
3
+ Version: 0.2.8
4
4
  Summary: Saterys — Scalable Analysis Toolkit for Earth Remote sYStemS
5
5
  Author-email: Sebastian Sanchez Bernal <bastian@example.com>
6
6
  License: MIT
7
- Project-URL: Homepage, https://github.com/yourusername/saterys
8
- Project-URL: Repository, https://github.com/yourusername/saterys
9
- Project-URL: Issues, https://github.com/yourusername/saterys/issues
7
+ Project-URL: Homepage, https://github.com/bastian6666/saterys
8
+ Project-URL: Repository, https://github.com/bastian6666/saterys
9
+ Project-URL: Issues, https://github.com/bastian6666/saterys/issues
10
10
  Classifier: Development Status :: 3 - Alpha
11
11
  Classifier: Intended Audience :: Science/Research
12
12
  Classifier: Topic :: Scientific/Engineering :: GIS
@@ -19,6 +19,13 @@ Classifier: Programming Language :: Python :: 3.12
19
19
  Requires-Python: >=3.9
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
+ Requires-Dist: fastapi>=0.110
23
+ Requires-Dist: uvicorn[standard]>=0.23
24
+ Requires-Dist: pydantic>=2
25
+ Requires-Dist: numpy>=1.26
26
+ Requires-Dist: rio-tiler>=6
27
+ Requires-Dist: rasterio>=1.3
28
+ Dynamic: license-file
22
29
 
23
30
  # SATERYS
24
31
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "saterys"
7
- version = "0.2.7" # bump each release
7
+ version = "0.2.8" # bump each release
8
8
  description = "Saterys — Scalable Analysis Toolkit for Earth Remote sYStemS"
9
9
  readme = "README.md"
10
10
  license = { text = "MIT" }
@@ -37,9 +37,9 @@ classifiers = [
37
37
  ]
38
38
 
39
39
  [project.urls]
40
- Homepage = "https://github.com/yourusername/saterys"
41
- Repository = "https://github.com/yourusername/saterys"
42
- Issues = "https://github.com/yourusername/saterys/issues"
40
+ Homepage = "https://github.com/bastian6666/saterys"
41
+ Repository = "https://github.com/bastian6666/saterys"
42
+ Issues = "https://github.com/bastian6666/saterys/issues"
43
43
 
44
44
  [project.scripts]
45
45
  saterys = "saterys.cli:main"
@@ -1,12 +1,12 @@
1
- Metadata-Version: 2.1
1
+ Metadata-Version: 2.4
2
2
  Name: saterys
3
- Version: 0.2.7
3
+ Version: 0.2.8
4
4
  Summary: Saterys — Scalable Analysis Toolkit for Earth Remote sYStemS
5
5
  Author-email: Sebastian Sanchez Bernal <bastian@example.com>
6
6
  License: MIT
7
- Project-URL: Homepage, https://github.com/yourusername/saterys
8
- Project-URL: Repository, https://github.com/yourusername/saterys
9
- Project-URL: Issues, https://github.com/yourusername/saterys/issues
7
+ Project-URL: Homepage, https://github.com/bastian6666/saterys
8
+ Project-URL: Repository, https://github.com/bastian6666/saterys
9
+ Project-URL: Issues, https://github.com/bastian6666/saterys/issues
10
10
  Classifier: Development Status :: 3 - Alpha
11
11
  Classifier: Intended Audience :: Science/Research
12
12
  Classifier: Topic :: Scientific/Engineering :: GIS
@@ -19,6 +19,13 @@ Classifier: Programming Language :: Python :: 3.12
19
19
  Requires-Python: >=3.9
20
20
  Description-Content-Type: text/markdown
21
21
  License-File: LICENSE
22
+ Requires-Dist: fastapi>=0.110
23
+ Requires-Dist: uvicorn[standard]>=0.23
24
+ Requires-Dist: pydantic>=2
25
+ Requires-Dist: numpy>=1.26
26
+ Requires-Dist: rio-tiler>=6
27
+ Requires-Dist: rasterio>=1.3
28
+ Dynamic: license-file
22
29
 
23
30
  # SATERYS
24
31
 
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
File without changes
File without changes