Commit 1269c460 authored by Ayres, Andrew's avatar Ayres, Andrew
Browse files

Merge branch 'feedback' into 'main'

Feedback

See merge request !3
parents 5c82a073 0e4940a3
Loading
Loading
Loading
Loading
Loading

code/.gitignore

100644 → 100755
+0 −0

File mode changed from 100644 to 100755.

+6 −0
Original line number Diff line number Diff line
Nova Tutorial
=======================



Developers: please read [this document](DEVELOPMENT.md)

code/episode_2/poetry.lock

100644 → 100755
+907 −127

File changed.File mode changed from 100644 to 100755.

Preview size limit exceeded, changes collapsed.

+3 −3
Original line number Diff line number Diff line
[tool.poetry]
name = "nova-tutorial"
version = "0.1.0"
description = "Template application"
description = "Nova Tutorial Project"
authors = []
readme = "README.md"
license = "MIT"
@@ -14,7 +14,7 @@ packages = [

[tool.poetry.dependencies]
python = "^3.10"

nova-trame = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
@@ -86,4 +86,4 @@ sphinxcontrib-napoleon ="*"
tomli = "*"

[tool.poetry.scripts]
app = "nova_tutorial:main"
app = "nova_tutorial.app:main"
+0 −7
Original line number Diff line number Diff line
import importlib.metadata

from .main import main

__all__ = ["main"]

__version__ = importlib.metadata.version(__package__)
Loading