From 7c64dad37afeec309166691a678591939fda56c4 Mon Sep 17 00:00:00 2001 From: cyschneck <22159116+cyschneck@users.noreply.github.com> Date: Wed, 24 Jul 2024 21:04:41 -0600 Subject: [PATCH] v1.3.3 four new features, correct for 'Ta' --- CITATION.cff | 2 +- setup.py | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index 6c115e8..48d8a6e 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -8,5 +8,5 @@ authors: given-names: Una G. orchid: 'https://orcid.org/0000-0003-0048-5143' title: "Pydar: Cassini RADAR data extraction software" -version: 1.3.2 +version: 1.3.3 url: "https://github.com/unaschneck/pydar" diff --git a/setup.py b/setup.py index eddf392..e5666ef 100644 --- a/setup.py +++ b/setup.py @@ -3,7 +3,7 @@ # Python Package Setup from setuptools import setup, find_namespace_packages -VERSION="1.3.2" +VERSION="1.3.3" DESCRIPTION="A Python package to access, download, view, and manipulate Cassini RADAR images" with open("README.md", "r") as f: @@ -38,7 +38,8 @@ "Topic :: Scientific/Engineering :: Visualization", "Topic :: Scientific/Engineering :: Astronomy" ], - packages=find_namespace_packages(include=['pydar', 'pydar.*']), + packages=find_namespace_packages(include=['pydar', 'pydar.*'], + exclude=['pydar.pytests']), include_package_data=True, install_requires=[ "beautifulsoup4",