-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #622 from slayoo/freezing
adding author_email to suppress warnings
- Loading branch information
Showing
1 changed file
with
2 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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='[email protected]', | ||
long_description=get_long_description(), | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/atmos-cloud-sim-uj/PySDM", | ||
|