Skip to content

Commit

Permalink
Add setup.cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
aymgal committed Apr 17, 2024
1 parent e5fec34 commit 71cfdcd
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<img src="https://github.com/aymgal/COOLEST/blob/main/images/full_logo.png#gh-light-mode-only" width="200" alt="COOLEST logo" />
<img src="https://github.com/aymgal/COOLEST/blob/main/images/full_logo_dark_bg.png#gh-dark-mode-only" width="200" alt="COOLEST logo" />
<img src="https://github.com/aymgal/COOLEST/blob/main/images/full_logo.png#gh-light-mode-only" width="800" alt="COOLEST logo" />
<img src="https://github.com/aymgal/COOLEST/blob/main/images/full_logo_dark_bg.png#gh-dark-mode-only" width="800" alt="COOLEST logo" />

# Standard for Strong Gravitational Lensing Analyses

Expand Down
12 changes: 12 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -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
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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,
Expand Down

0 comments on commit 71cfdcd

Please sign in to comment.