From 6391fadb41901aad74c41498bb9bb007a4be5491 Mon Sep 17 00:00:00 2001 From: Valerio Formato <valerio.formato@cern.ch> Date: Thu, 21 Apr 2022 10:24:22 +0200 Subject: [PATCH] Update author info --- docs/source/conf.py | 6 +++--- lumache.py | 23 ----------------------- pyproject.toml | 8 -------- 3 files changed, 3 insertions(+), 34 deletions(-) delete mode 100644 lumache.py delete mode 100644 pyproject.toml diff --git a/docs/source/conf.py b/docs/source/conf.py index 6e9e8c0..2c67f75 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -2,9 +2,9 @@ # -- Project information -project = 'Lumache' -copyright = '2021, Graziella' -author = 'Graziella' +project = 'Caesar' +copyright = '2022, The Caesar/ASPIS team' +author = 'CAESAR Node 2000' release = '0.1' version = '0.1.0' diff --git a/lumache.py b/lumache.py deleted file mode 100644 index 3ea7ce9..0000000 --- a/lumache.py +++ /dev/null @@ -1,23 +0,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"] diff --git a/pyproject.toml b/pyproject.toml deleted file mode 100644 index 9d3d00e..0000000 --- a/pyproject.toml +++ /dev/null @@ -1,8 +0,0 @@ -[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"] -- GitLab