From 2ed66bf9bcf2b359107d1b057f4ed31063d1c18f Mon Sep 17 00:00:00 2001 From: Sylwester Arabas Date: Thu, 16 Sep 2021 15:15:55 -0500 Subject: [PATCH] adding author_email to suppress warnings --- setup.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 4ef7195f1..5316e9815 100644 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ def get_long_description(): setup( name='PySDM', - description='Pythonic particle-based (super-droplet) cloud microphysics modelling with Jupyter examples', + description='Pythonic particle-based (super-droplet) warm-rain/aqueous-chemistry cloud microphysics package with box, parcel & 1D/2D prescribed-flow examples in Python, Julia and Matlab', use_scm_version=True, setup_requires=['setuptools_scm'], install_requires=[ @@ -24,6 +24,7 @@ def get_long_description(): 'pyevtk' + ('==1.2.0' if 'CI' in os.environ else '') ], author='https://github.com/atmos-cloud-sim-uj/PySDM/graphs/contributors', + author_email='sylwester.arabas@uj.edu.pl', long_description=get_long_description(), long_description_content_type="text/markdown", url="https://github.com/atmos-cloud-sim-uj/PySDM",