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") 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"