Skip to content

Commit

Permalink
Merge pull request #85 from ImperialCollegeLondon/tidyup
Browse files Browse the repository at this point in the history
A few misc tidy-ups
  • Loading branch information
alexdewar authored May 29, 2024
2 parents a1764ec + a212a81 commit 3bd3b70
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion myproject/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"""The main module for MyProject."""

__version__ = "0.1.0"
from importlib.metadata import version

__version__ = version(__name__)
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tool.poetry]
name = "MyProject"
name = "myproject"
version = "0.1.0"
description = ""
authors = ["Jane Doe <jane_doe@some_email.com>"]
Expand Down

0 comments on commit 3bd3b70

Please sign in to comment.