diff --git a/README.md b/README.md index 6f50c31..ac0312f 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ -COOLEST logo -COOLEST logo +COOLEST logo +COOLEST logo # Standard for Strong Gravitational Lensing Analyses diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..4cd7c05 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,12 @@ +[metadata] +name = coolest +version = attr: coolest.VERSION +author = Aymeric Galan & COOLEST contributors +description = Standard for Strong Gravitational Lensing Analyses +long_description = file: README.md, HISTORY.md, LICENSE.md +license = BSD-3-Clause +url = https://github.com/aymgal/coolest +keywords = coolest, lensing, gravitation, astrophysics +project_urls = + Documentation = https://coolest.readthedocs.io/ + Changelog = https://github.com/aymgal/COOLEST/blob/main/HISTORY.md diff --git a/setup.py b/setup.py index 6e88b37..c481025 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,6 @@ this_directory = os.path.abspath(os.path.dirname(__file__)) with open(os.path.join(this_directory, 'README.md'), encoding='utf-8') as f: - long_description = f.read() readme = f.read() # Python version @@ -46,8 +45,9 @@ packages=setuptools.find_packages(), license=release_info['__license__'], description=release_info['__about__'], - long_description=long_description, + long_description=readme, long_description_content_type='text/markdown', + keywords=["coolest", "lensing", "gravitation", "astrophysics"], python_requires=python_requires, install_requires=install_requires,