Skip to content
Snippets Groups Projects
Commit 6391fadb authored by Valerio Formato's avatar Valerio Formato
Browse files

Update author info

parent bb3fe20a
No related branches found
No related tags found
No related merge requests found
...@@ -2,9 +2,9 @@ ...@@ -2,9 +2,9 @@
# -- Project information # -- Project information
project = 'Lumache' project = 'Caesar'
copyright = '2021, Graziella' copyright = '2022, The Caesar/ASPIS team'
author = 'Graziella' author = 'CAESAR Node 2000'
release = '0.1' release = '0.1'
version = '0.1.0' version = '0.1.0'
......
"""
Lumache - Python library for cooks and food lovers.
"""
__version__ = "0.1.0"
class InvalidKindError(Exception):
"""Raised if the kind is invalid."""
pass
def get_random_ingredients(kind=None):
"""
Return a list of random ingredients as strings.
:param kind: Optional "kind" of ingredients.
:type kind: list[str] or None
:raise lumache.InvalidKindError: If the kind is invalid.
:return: The ingredients list.
:rtype: list[str]
"""
return ["shells", "gorgonzola", "parsley"]
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "ASPIS WIKI pages"
authors = [{name = "CAESAR node 2000", email = "caesar_node_2000@inaf.it"}]
dynamic = ["version", "description"]
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment