Commit 3c11c814 authored by Kelvin's avatar Kelvin
Browse files

bumo to 0.3.0

parent e659caf8
Loading
Loading
Loading
Loading
+3 −0
Original line number Diff line number Diff line
@@ -35,6 +35,9 @@ release.

## Unreleased


## [0.3.0] - 2024-04-14

### Added
- `create_csm` now dispatches to `_from_isd` and `_from_state` to test whether the sensor model can be instantiated from either and ISD or a state file.
- `generate_image_coordinate` to `csm.py`. This provides a similar interface to `generate_ground_coordinate` and abstracts away the `csmapi` from the user.
+45 −0
Original line number Diff line number Diff line
@@ -44,6 +44,51 @@
      "metadataLastUpdated": "2023-01-25"
    }
  },
  {
    "name": "knoten",
    "organization": "U.S. Geological Survey",
    "description": "GitHub code repository for the knoten package",
    "version": "0.3.0",
    "status": "Production",

    "permissions": {
      "usageType": "openSource",
      "licenses": [
        {
          "name": "Public Domain, CC0-1.0",
          "URL": "https://code.usgs.gov/astrogeology/knoten/-/raw/0.3.0/LICENSE.md"
        }
      ]
    },

    "homepageURL": "https://code.usgs.gov/astrogeology/knoten/-/tree/0.3.0",
    "downloadURL": "https://code.usgs.gov/astrogeology/knoten/-/archive/0.3.0/knoten-0.3.0.zip",
    "disclaimerURL": "https://code.usgs.gov/astrogeology/knoten/-/raw/0.3.0/DISCLAIMER.md",
    "repositoryURL": "https://code.usgs.gov/astrogeology/knoten.git",
    "vcs": "git",

    "laborHours": 300,

    "tags": [
      "Planetary",
      "Remote Sensing",
      "Photogrammetry",
      "Testing"
    ],

    "languages": [
      "Python"
    ],

    "contact": {
      "name": "Adam Paquette",
      "email": "acpaquette@usgs.gov"
    },

    "date": {
      "metadataLastUpdated": "2023-02-27"
    }
  },
  {
    "name": "knoten",
    "organization": "U.S. Geological Survey",
+1 −1
Original line number Diff line number Diff line
from setuptools import setup, find_packages
setup(
    name='knoten',
    version='0.2.1',
    version='0.3.0',
    long_description='',
    packages=find_packages(),
    include_package_data=True,