Commit 6391fadb authored by Valerio Formato's avatar Valerio Formato
Browse files

Update author info

parent bb3fe20a
Loading
Loading
Loading
Loading
+3 −3
Original line number Original line Diff line number Diff line
@@ -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.py

deleted100644 → 0
+0 −23
Original line number Original line Diff line number Diff line
"""
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"]

pyproject.toml

deleted100644 → 0
+0 −8
Original line number Original line Diff line number Diff line
[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"]