Commit e6d43972 authored by Amy Stamile's avatar Amy Stamile
Browse files

0.4.0 version bump

parent 86003709
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -35,6 +35,11 @@ release.

## Unreleased

## [0.4.0] - 2024-05-10

### Added
- Added the following sensor utility functions: `phase_angle`, `emission_angle`, `slant_distance`, `target_center_distance`, `sub_spacecraft_point`, `local_radius`, `right_ascension_declination`, `line_resolution`, `sample_resolution`, and `pixel_resolution`.


## [0.3.0] - 2024-04-14

+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.4.0",
    "status": "Production",

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

    "homepageURL": "https://code.usgs.gov/astrogeology/knoten/-/tree/0.4.0",
    "downloadURL": "https://code.usgs.gov/astrogeology/knoten/-/archive/0.4.0/knoten-0.4.0.zip",
    "disclaimerURL": "https://code.usgs.gov/astrogeology/knoten/-/raw/0.4.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.3.0',
    version='0.4.0',
    long_description='',
    packages=find_packages(),
    include_package_data=True,