Skip to content

Commit

Permalink
Release v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
aymgal committed Jul 30, 2024
1 parent d16cc9d commit a851b6a
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 6 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Changelog

## 0.1.0 (2024-07-30)
++++++++++++++++++

* First release on PyPI.
1 change: 1 addition & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
gem 'coveralls', require: false
6 changes: 3 additions & 3 deletions herculens/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@
"""

# Set the package release version
version_info = (0, 0, 1)
version_info = (0, 1, 0)
__version__ = '.'.join(str(c) for c in version_info)

# Set the package details
__author__ = 'Aymeric Galan, Austin Peel, Giorgos Vernardos & Herculens contributors'
__email__ = 'austin.peel@epfl.ch'
__email__ = 'aymeric.galan@gmail.com'
__year__ = '2021-2024'
__credits__ = 'Herculens contributors, EPFL (see AUTHORS.md)'
__url__ = 'https://github.com/austinpeel/herculens'
__url__ = 'https://github.com/Herculens/herculens'
__description__ = 'Auto-differentiable strong lens modelling'
__license__ = 'MIT'
13 changes: 10 additions & 3 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,4 +1,11 @@
[aliases]
test=pytest
[metadata]
description-file=README.md
name = herculens
version = attr: herculens.VERSION
author = Herculens contributors
description = Differentiable strong lens modeling
license = MIT
url = https://github.com/Herculens/herculens
keywords = lensing, gravitation, astrophysics, modeling, jax
project_urls =
Changelog = https://github.com/Herculens/herculens/blob/main/CHANGELOG.md
# Documentation = https://coolest.readthedocs.io/
2 changes: 2 additions & 0 deletions test_helper.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
require 'coveralls'
Coveralls.wear!

0 comments on commit a851b6a

Please sign in to comment.