Skip to content

Commit

Permalink
Set the app version to 1.0.1 for final release before v2
Browse files Browse the repository at this point in the history
  • Loading branch information
ml-evs committed Aug 31, 2023
1 parent 8df6ee4 commit 7d82668
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
[build-system]
requires = ["setuptools >= 42", "wheel"]
requires = ["setuptools >= 61.0.0", "wheel"]
build-backend = "setuptools.build_meta"

[tool.poetry]
name = "PASCal"
version = "2.0.0"
version = "1.0.1"
description = "Principal Axis Strain Calculator (PASCal) is a web tool designed to help scientists analyse non-ambient lattice parameter data."
readme = "README.md"
keywords = ["materials", "chemistry", "fitting", "strain", "lattice"]
license = "MIT"
authors = [ "Matthew Cliffe <[email protected]>", ]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.8",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering",
]
Expand Down
5 changes: 5 additions & 0 deletions src/PASCal/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import importlib.metadata

__version__ = importlib.metadata.version("PASCal")

__all__ = ("__version__",)

0 comments on commit 7d82668

Please sign in to comment.