From 6078a1d71a709387a5d3d61ee2716c7c6913b9b7 Mon Sep 17 00:00:00 2001 From: Francesco Biscani Date: Sun, 26 Feb 2023 13:54:54 +0100 Subject: [PATCH 1/2] Change the PyPI project name. --- tools/wheel_setup.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/wheel_setup.py b/tools/wheel_setup.py index 0808b94..a793835 100644 --- a/tools/wheel_setup.py +++ b/tools/wheel_setup.py @@ -3,10 +3,10 @@ from setuptools.dist import Distribution import sys -NAME = "cascade" +NAME = "cascade.py" VERSION = "@cascade_VERSION@" DESCRIPTION = "N-body simulation for the evolution of orbital environments" -LONG_DESCRIPTION = "cascade is a Python library developed to propagate the evolution of a large number of orbiting objects while detecting reliably close encounters and collisions." +LONG_DESCRIPTION = "A Python library to propagate the evolution of a large number of orbiting objects while detecting reliably close encounters and collisions." URL = "https://github.com/esa/cascade" AUTHOR = "Francesco Biscani, Dario Izzo" AUTHOR_EMAIL = "bluescarni@gmail.com" From e16ba61f08961179ce94b476fbe92e1380119564 Mon Sep 17 00:00:00 2001 From: Francesco Biscani Date: Sun, 26 Feb 2023 14:09:49 +0100 Subject: [PATCH 2/2] Bump version number to 0.1.2. --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index ef7e910..0b660aa 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ if(NOT CMAKE_BUILD_TYPE) FORCE) endif() -project(cascade VERSION 0.1 LANGUAGES CXX C) +project(cascade VERSION 0.1.2 LANGUAGES CXX C) list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" "${CMAKE_CURRENT_SOURCE_DIR}/cmake/yacma")