asp-plot 0.0.2__tar.gz → 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.
Files changed (25) hide show
  1. {asp_plot-0.0.2 → asp_plot-0.1.0}/PKG-INFO +1 -1
  2. {asp_plot-0.0.2 → asp_plot-0.1.0}/asp_plot.egg-info/PKG-INFO +1 -1
  3. {asp_plot-0.0.2 → asp_plot-0.1.0}/asp_plot.egg-info/SOURCES.txt +1 -0
  4. asp_plot-0.1.0/asp_plot.egg-info/entry_points.txt +2 -0
  5. {asp_plot-0.0.2 → asp_plot-0.1.0}/pyproject.toml +4 -1
  6. {asp_plot-0.0.2 → asp_plot-0.1.0}/LICENSE +0 -0
  7. {asp_plot-0.0.2 → asp_plot-0.1.0}/README.md +0 -0
  8. {asp_plot-0.0.2 → asp_plot-0.1.0}/asp_plot/__init__.py +0 -0
  9. {asp_plot-0.0.2 → asp_plot-0.1.0}/asp_plot/bundle_adjust.py +0 -0
  10. {asp_plot-0.0.2 → asp_plot-0.1.0}/asp_plot/cli/__init__.py +0 -0
  11. {asp_plot-0.0.2 → asp_plot-0.1.0}/asp_plot/cli/asp_plot.py +0 -0
  12. {asp_plot-0.0.2 → asp_plot-0.1.0}/asp_plot/processing_parameters.py +0 -0
  13. {asp_plot-0.0.2 → asp_plot-0.1.0}/asp_plot/scenes.py +0 -0
  14. {asp_plot-0.0.2 → asp_plot-0.1.0}/asp_plot/stereo.py +0 -0
  15. {asp_plot-0.0.2 → asp_plot-0.1.0}/asp_plot/utils.py +0 -0
  16. {asp_plot-0.0.2 → asp_plot-0.1.0}/asp_plot.egg-info/dependency_links.txt +0 -0
  17. {asp_plot-0.0.2 → asp_plot-0.1.0}/asp_plot.egg-info/top_level.txt +0 -0
  18. {asp_plot-0.0.2 → asp_plot-0.1.0}/setup.cfg +0 -0
  19. {asp_plot-0.0.2 → asp_plot-0.1.0}/setup.py +0 -0
  20. {asp_plot-0.0.2 → asp_plot-0.1.0}/tests/__init__.py +0 -0
  21. {asp_plot-0.0.2 → asp_plot-0.1.0}/tests/test_bundle_adjust.py +0 -0
  22. {asp_plot-0.0.2 → asp_plot-0.1.0}/tests/test_imports.py +0 -0
  23. {asp_plot-0.0.2 → asp_plot-0.1.0}/tests/test_processing_parameters.py +0 -0
  24. {asp_plot-0.0.2 → asp_plot-0.1.0}/tests/test_scenes.py +0 -0
  25. {asp_plot-0.0.2 → asp_plot-0.1.0}/tests/test_stereo.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: asp_plot
3
- Version: 0.0.2
3
+ Version: 0.1.0
4
4
  Summary: Package for plotting outputs Ames Stereo Pipeline processing
5
5
  Author: Ben Purinton
6
6
  Author-email: Ben Purinton <purinton@uw.edu>
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: asp_plot
3
- Version: 0.0.2
3
+ Version: 0.1.0
4
4
  Summary: Package for plotting outputs Ames Stereo Pipeline processing
5
5
  Author: Ben Purinton
6
6
  Author-email: Ben Purinton <purinton@uw.edu>
@@ -11,6 +11,7 @@ asp_plot/utils.py
11
11
  asp_plot.egg-info/PKG-INFO
12
12
  asp_plot.egg-info/SOURCES.txt
13
13
  asp_plot.egg-info/dependency_links.txt
14
+ asp_plot.egg-info/entry_points.txt
14
15
  asp_plot.egg-info/top_level.txt
15
16
  asp_plot/cli/__init__.py
16
17
  asp_plot/cli/asp_plot.py
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ asp_plot = asp_plot.cli.asp_plot:main
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "asp_plot"
7
- version = "0.0.2"
7
+ version = "0.1.0"
8
8
  authors = [
9
9
  { name="Ben Purinton", email="purinton@uw.edu" },
10
10
  ]
@@ -17,6 +17,9 @@ classifiers = [
17
17
  "Operating System :: OS Independent",
18
18
  ]
19
19
 
20
+ [project.scripts]
21
+ asp_plot = "asp_plot.cli.asp_plot:main"
22
+
20
23
  [project.urls]
21
24
  Homepage = "https://github.com/uw-cryo/asp_plot"
22
25
  Issues = "https://github.com/uw-cryo/asp_plot/issues"
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