From a3cd6e43abb08cf637ff2a052bd4982b1dd4c05a Mon Sep 17 00:00:00 2001 From: Nicola Demo Date: Tue, 4 Jul 2023 12:00:41 +0200 Subject: [PATCH] Update setup.py with the long description --- setup.py | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 1620846..36038b0 100644 --- a/setup.py +++ b/setup.py @@ -15,7 +15,7 @@ VERSION = meta['__version__'] KEYWORDS = 'physics-informed neural-network' REQUIRED = [ - 'future', 'numpy', 'matplotlib', 'torch' + 'numpy', 'matplotlib', 'torch' ] EXTRAS = { @@ -24,7 +24,13 @@ EXTRAS = { } LDESCRIPTION = ( - "" + "PINA is a Python package providing an easy interface to deal with " + "physics-informed neural networks (PINN) for the approximation of " + "(differential, nonlinear, ...) functions. Based on Pytorch, PINA " + "offers a simple and intuitive way to formalize a specific problem " + "and solve it using PINN. The approximated solution of a differential " + "equation can be implemented using PINA in a few lines of code thanks " + "to the intuitive and user-friendly interface." ) setup(