clovis 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
clovis/__init__.py ADDED
@@ -0,0 +1,4 @@
1
+ from ._client import cloooooo
2
+
3
+ __all__ = ["cloooooo"]
4
+ __version__ = "0.1.0"
clovis/_cli.py ADDED
@@ -0,0 +1,114 @@
1
+ from __future__ import annotations
2
+
3
+ import os
4
+ import sys
5
+ from typing import Optional
6
+
7
+ import typer
8
+ from rich.console import Console
9
+ from rich.live import Live
10
+ from rich.markdown import Markdown
11
+
12
+ app = typer.Typer(help="cloooooo — personal LLM CLI")
13
+ console = Console()
14
+
15
+
16
+ def _get_client():
17
+ from ._client import cloooooo
18
+ return cloooooo(
19
+ api_key=os.getenv("CLOVIS_API_KEY"),
20
+ ollama_url=os.getenv("CLOVIS_OLLAMA_URL", "http://localhost:11434"),
21
+ model=os.getenv("CLOVIS_MODEL", "qwen3-72b-q5km"),
22
+ )
23
+
24
+
25
+ @app.command(name="chat")
26
+ def cmd_chat(
27
+ prompt: str = typer.Argument(..., help="Message à envoyer"),
28
+ model: Optional[str] = typer.Option(None, "--model", "-m"),
29
+ no_stream: bool = typer.Option(False, "--no-stream"),
30
+ markdown: bool = typer.Option(True, "--markdown/--no-markdown"),
31
+ ):
32
+ """Envoie un message au LLM."""
33
+ client = _get_client()
34
+ if model:
35
+ client.model = model
36
+
37
+ if no_stream:
38
+ resp = client.chat.completions.create(
39
+ messages=[{"role": "user", "content": prompt}]
40
+ )
41
+ text = resp.choices[0].message.content
42
+ console.print(Markdown(text) if markdown else text)
43
+ return
44
+
45
+ text = ""
46
+ with Live(console=console, refresh_per_second=15) as live:
47
+ for chunk in client.chat.completions.create(
48
+ messages=[{"role": "user", "content": prompt}],
49
+ stream=True,
50
+ ):
51
+ text += chunk.choices[0].delta.get("content", "")
52
+ live.update(Markdown(text) if markdown else text)
53
+
54
+
55
+ @app.command(name="serve")
56
+ def cmd_serve(
57
+ port: int = typer.Option(8000, "--port", "-p"),
58
+ host: str = typer.Option("0.0.0.0", "--host"),
59
+ api_key: Optional[str] = typer.Option(None, "--api-key", envvar="CLOVIS_API_KEY"),
60
+ ollama_url: str = typer.Option("http://localhost:11434", "--ollama-url", envvar="CLOVIS_OLLAMA_URL"),
61
+ ):
62
+ """Lance le serveur API OpenAI-compatible."""
63
+ from ._server import start_server
64
+ console.print(f"[bold green]cloooooo API[/] démarré sur [bold]http://{host}:{port}[/]")
65
+ if api_key:
66
+ console.print(f"[dim]Clé API : {api_key[:12]}...[/]")
67
+ start_server(host=host, port=port, ollama_url=ollama_url, api_key=api_key)
68
+
69
+
70
+ @app.command(name="repl")
71
+ def cmd_repl(
72
+ system: Optional[str] = typer.Option(None, "--system", "-s", help="System prompt"),
73
+ model: Optional[str] = typer.Option(None, "--model", "-m"),
74
+ ):
75
+ """Lance une conversation interactive (REPL)."""
76
+ client = _get_client()
77
+ if model:
78
+ client.model = model
79
+
80
+ conv = client.conversation(system=system)
81
+ console.print("[bold]cloooooo REPL[/] — [dim]Ctrl+C pour quitter, /reset pour vider l'historique[/]\n")
82
+
83
+ while True:
84
+ try:
85
+ prompt = typer.prompt("You")
86
+ except (typer.Abort, KeyboardInterrupt):
87
+ console.print("\n[dim]Au revoir.[/]")
88
+ break
89
+
90
+ if prompt.strip() == "/reset":
91
+ conv.reset()
92
+ console.print("[dim]Historique réinitialisé.[/]")
93
+ continue
94
+
95
+ text = ""
96
+ console.print("[bold cyan]cloooooo[/] ", end="")
97
+ with Live(console=console, refresh_per_second=15) as live:
98
+ for chunk in conv.stream(prompt):
99
+ text += chunk
100
+ live.update(text)
101
+ console.print()
102
+
103
+
104
+ # Allow: clovis "question" (shortcut without subcommand)
105
+ @app.callback(invoke_without_command=True)
106
+ def main(
107
+ ctx: typer.Context,
108
+ prompt: Optional[str] = typer.Argument(None),
109
+ ):
110
+ if ctx.invoked_subcommand is None:
111
+ if prompt:
112
+ cmd_chat(prompt=prompt, model=None, no_stream=False, markdown=True)
113
+ else:
114
+ console.print(ctx.get_help())
clovis/_client.py ADDED
@@ -0,0 +1,68 @@
1
+ from __future__ import annotations
2
+
3
+ import os
4
+ from typing import Optional
5
+
6
+ import httpx
7
+
8
+ from ._completions import Chat
9
+ from ._conversation import Conversation
10
+
11
+
12
+ class cloooooo:
13
+ """
14
+ Personal LLM client — OpenAI-compatible interface over a local Ollama instance.
15
+
16
+ Usage::
17
+
18
+ from clovis import cloooooo
19
+
20
+ client = cloooooo(api_key="sk-clovis-...")
21
+ resp = client.chat.completions.create(
22
+ model="qwen3-72b",
23
+ messages=[{"role": "user", "content": "Bonjour !"}]
24
+ )
25
+ print(resp.choices[0].message.content)
26
+ """
27
+
28
+ def __init__(
29
+ self,
30
+ api_key: Optional[str] = None,
31
+ ollama_url: str = "http://localhost:11434",
32
+ model: str = "qwen3-72b-q5km",
33
+ ) -> None:
34
+ self.api_key = api_key or os.getenv("CLOVIS_API_KEY")
35
+ self.ollama_url = ollama_url or os.getenv("CLOVIS_OLLAMA_URL", "http://localhost:11434")
36
+ self.model = model or os.getenv("CLOVIS_MODEL", "qwen3-72b-q5km")
37
+
38
+ self._http = httpx.Client()
39
+ self.chat = Chat(self)
40
+
41
+ def conversation(
42
+ self,
43
+ system: Optional[str] = None,
44
+ model: Optional[str] = None,
45
+ ) -> Conversation:
46
+ """Return a new conversation with persistent history."""
47
+ return Conversation(self, system=system, model=model)
48
+
49
+ @classmethod
50
+ def serve(
51
+ cls,
52
+ port: int = 8000,
53
+ host: str = "0.0.0.0",
54
+ ollama_url: str = "http://localhost:11434",
55
+ api_key: Optional[str] = None,
56
+ ) -> None:
57
+ """Start an OpenAI-compatible HTTP API server."""
58
+ from ._server import start_server
59
+ start_server(host=host, port=port, ollama_url=ollama_url, api_key=api_key)
60
+
61
+ def models(self) -> list[str]:
62
+ """List available models from Ollama."""
63
+ resp = self._http.get(f"{self.ollama_url}/api/tags", timeout=10)
64
+ resp.raise_for_status()
65
+ return [m["name"] for m in resp.json().get("models", [])]
66
+
67
+ def __repr__(self) -> str:
68
+ return f"cloooooo(model={self.model!r}, ollama_url={self.ollama_url!r})"
clovis/_completions.py ADDED
@@ -0,0 +1,96 @@
1
+ from __future__ import annotations
2
+
3
+ import json
4
+ from typing import TYPE_CHECKING, Iterator, Optional
5
+
6
+ import httpx
7
+
8
+ from ._models import (
9
+ ChatCompletion,
10
+ ChatCompletionChunk,
11
+ ChatCompletionRequest,
12
+ DeltaChoice,
13
+ Message,
14
+ )
15
+
16
+ if TYPE_CHECKING:
17
+ from ._client import cloooooo
18
+
19
+
20
+ class ChatCompletions:
21
+ def __init__(self, client: "cloooooo") -> None:
22
+ self._client = client
23
+
24
+ def create(
25
+ self,
26
+ model: Optional[str] = None,
27
+ messages: Optional[list[dict]] = None,
28
+ stream: bool = False,
29
+ temperature: float = 0.7,
30
+ max_tokens: Optional[int] = None,
31
+ top_p: float = 0.9,
32
+ **_,
33
+ ) -> ChatCompletion | Iterator[ChatCompletionChunk]:
34
+ model = model or self._client.model
35
+ parsed = [Message(**m) for m in (messages or [])]
36
+
37
+ payload = {
38
+ "model": model,
39
+ "messages": [m.model_dump() for m in parsed],
40
+ "stream": stream,
41
+ "options": {
42
+ "temperature": temperature,
43
+ "top_p": top_p,
44
+ **({"num_predict": max_tokens} if max_tokens else {}),
45
+ },
46
+ }
47
+
48
+ if stream:
49
+ return self._stream(model, payload)
50
+ return self._sync(model, payload)
51
+
52
+ def _sync(self, model: str, payload: dict) -> ChatCompletion:
53
+ resp = self._client._http.post(
54
+ f"{self._client.ollama_url}/api/chat",
55
+ json=payload,
56
+ timeout=600,
57
+ )
58
+ resp.raise_for_status()
59
+ return ChatCompletion.from_ollama(resp.json(), model)
60
+
61
+ def _stream(self, model: str, payload: dict) -> Iterator[ChatCompletionChunk]:
62
+ chunk_id = None
63
+ with self._client._http.stream(
64
+ "POST",
65
+ f"{self._client.ollama_url}/api/chat",
66
+ json=payload,
67
+ timeout=600,
68
+ ) as resp:
69
+ resp.raise_for_status()
70
+ for line in resp.iter_lines():
71
+ if not line:
72
+ continue
73
+ data = json.loads(line)
74
+ token = data.get("message", {}).get("content", "")
75
+ done = data.get("done", False)
76
+
77
+ chunk = ChatCompletionChunk(
78
+ model=model,
79
+ choices=[DeltaChoice(
80
+ delta={"content": token} if token else {},
81
+ finish_reason="stop" if done else None,
82
+ )],
83
+ )
84
+ if chunk_id is None:
85
+ chunk_id = chunk.id
86
+ else:
87
+ chunk.id = chunk_id
88
+
89
+ yield chunk
90
+ if done:
91
+ break
92
+
93
+
94
+ class Chat:
95
+ def __init__(self, client: "cloooooo") -> None:
96
+ self.completions = ChatCompletions(client)
@@ -0,0 +1,65 @@
1
+ from __future__ import annotations
2
+
3
+ from typing import TYPE_CHECKING, Iterator, Optional
4
+
5
+ from ._models import ChatCompletionChunk, Message
6
+
7
+ if TYPE_CHECKING:
8
+ from ._client import cloooooo
9
+
10
+
11
+ class Conversation:
12
+ """Persistent conversation with automatic history."""
13
+
14
+ def __init__(
15
+ self,
16
+ client: "cloooooo",
17
+ system: Optional[str] = None,
18
+ model: Optional[str] = None,
19
+ ) -> None:
20
+ self._client = client
21
+ self._model = model or client.model
22
+ self._history: list[dict] = []
23
+ if system:
24
+ self._history.append({"role": "system", "content": system})
25
+
26
+ def chat(self, message: str, **kwargs) -> str:
27
+ self._history.append({"role": "user", "content": message})
28
+ resp = self._client.chat.completions.create(
29
+ model=self._model,
30
+ messages=self._history,
31
+ **kwargs,
32
+ )
33
+ content = resp.choices[0].message.content
34
+ self._history.append({"role": "assistant", "content": content})
35
+ return content
36
+
37
+ def stream(self, message: str, **kwargs) -> Iterator[str]:
38
+ self._history.append({"role": "user", "content": message})
39
+ full = ""
40
+ for chunk in self._client.chat.completions.create(
41
+ model=self._model,
42
+ messages=self._history,
43
+ stream=True,
44
+ **kwargs,
45
+ ):
46
+ token = chunk.choices[0].delta.get("content", "")
47
+ full += token
48
+ yield token
49
+ self._history.append({"role": "assistant", "content": full})
50
+
51
+ def reset(self, keep_system: bool = True) -> None:
52
+ if keep_system and self._history and self._history[0]["role"] == "system":
53
+ self._history = [self._history[0]]
54
+ else:
55
+ self._history = []
56
+
57
+ @property
58
+ def history(self) -> list[dict]:
59
+ return list(self._history)
60
+
61
+ def __enter__(self) -> "Conversation":
62
+ return self
63
+
64
+ def __exit__(self, *_) -> None:
65
+ pass
clovis/_models.py ADDED
@@ -0,0 +1,75 @@
1
+ from __future__ import annotations
2
+
3
+ import time
4
+ import uuid
5
+ from typing import Iterator, Literal, Optional
6
+
7
+ from pydantic import BaseModel, Field
8
+
9
+
10
+ class Message(BaseModel):
11
+ role: Literal["system", "user", "assistant"]
12
+ content: str
13
+
14
+
15
+ class ChatCompletionRequest(BaseModel):
16
+ model: str
17
+ messages: list[Message]
18
+ stream: bool = False
19
+ temperature: float = 0.7
20
+ max_tokens: Optional[int] = None
21
+ top_p: float = 0.9
22
+ top_k: int = 20
23
+
24
+
25
+ class Choice(BaseModel):
26
+ index: int = 0
27
+ message: Message
28
+ finish_reason: str = "stop"
29
+
30
+
31
+ class DeltaChoice(BaseModel):
32
+ index: int = 0
33
+ delta: dict
34
+ finish_reason: Optional[str] = None
35
+
36
+
37
+ class Usage(BaseModel):
38
+ prompt_tokens: int = 0
39
+ completion_tokens: int = 0
40
+ total_tokens: int = 0
41
+
42
+
43
+ class ChatCompletion(BaseModel):
44
+ id: str = Field(default_factory=lambda: f"chatcmpl-{uuid.uuid4().hex[:12]}")
45
+ object: str = "chat.completion"
46
+ created: int = Field(default_factory=lambda: int(time.time()))
47
+ model: str
48
+ choices: list[Choice]
49
+ usage: Usage
50
+
51
+ @classmethod
52
+ def from_ollama(cls, data: dict, model: str) -> "ChatCompletion":
53
+ return cls(
54
+ model=model,
55
+ choices=[Choice(
56
+ message=Message(
57
+ role=data["message"]["role"],
58
+ content=data["message"]["content"],
59
+ ),
60
+ finish_reason="stop" if data.get("done") else "length",
61
+ )],
62
+ usage=Usage(
63
+ prompt_tokens=data.get("prompt_eval_count", 0),
64
+ completion_tokens=data.get("eval_count", 0),
65
+ total_tokens=(data.get("prompt_eval_count", 0) + data.get("eval_count", 0)),
66
+ ),
67
+ )
68
+
69
+
70
+ class ChatCompletionChunk(BaseModel):
71
+ id: str = Field(default_factory=lambda: f"chatcmpl-{uuid.uuid4().hex[:12]}")
72
+ object: str = "chat.completion.chunk"
73
+ created: int = Field(default_factory=lambda: int(time.time()))
74
+ model: str
75
+ choices: list[DeltaChoice]
clovis/_server.py ADDED
@@ -0,0 +1,117 @@
1
+ from __future__ import annotations
2
+
3
+ import json
4
+ import time
5
+ import uuid
6
+ from typing import Optional
7
+
8
+ import httpx
9
+ import uvicorn
10
+ from fastapi import Depends, FastAPI, HTTPException, Request
11
+ from fastapi.responses import StreamingResponse
12
+ from fastapi.security import HTTPAuthorizationCredentials, HTTPBearer
13
+
14
+ from ._models import ChatCompletionRequest
15
+
16
+ _bearer = HTTPBearer(auto_error=False)
17
+
18
+
19
+ def build_app(ollama_url: str, api_key: Optional[str]) -> FastAPI:
20
+ app = FastAPI(title="cloooooo API", version="0.1.0")
21
+
22
+ def _check_key(creds: Optional[HTTPAuthorizationCredentials] = Depends(_bearer)):
23
+ if api_key and (not creds or creds.credentials != api_key):
24
+ raise HTTPException(status_code=401, detail="Invalid API key")
25
+
26
+ @app.get("/v1/models", dependencies=[Depends(_check_key)])
27
+ def list_models():
28
+ resp = httpx.get(f"{ollama_url}/api/tags", timeout=10)
29
+ models = [m["name"] for m in resp.json().get("models", [])]
30
+ return {
31
+ "object": "list",
32
+ "data": [{"id": m, "object": "model", "owned_by": "clovis"} for m in models],
33
+ }
34
+
35
+ @app.post("/v1/chat/completions", dependencies=[Depends(_check_key)])
36
+ async def chat_completions(req: ChatCompletionRequest, raw: Request):
37
+ payload = {
38
+ "model": req.model,
39
+ "messages": [m.model_dump() for m in req.messages],
40
+ "stream": req.stream,
41
+ "options": {
42
+ "temperature": req.temperature,
43
+ "top_p": req.top_p,
44
+ **({"num_predict": req.max_tokens} if req.max_tokens else {}),
45
+ },
46
+ }
47
+
48
+ if req.stream:
49
+ return StreamingResponse(
50
+ _stream_ollama(ollama_url, payload, req.model),
51
+ media_type="text/event-stream",
52
+ )
53
+
54
+ async with httpx.AsyncClient() as client:
55
+ resp = await client.post(
56
+ f"{ollama_url}/api/chat", json=payload, timeout=600
57
+ )
58
+ resp.raise_for_status()
59
+ data = resp.json()
60
+
61
+ cid = f"chatcmpl-{uuid.uuid4().hex[:12]}"
62
+ return {
63
+ "id": cid,
64
+ "object": "chat.completion",
65
+ "created": int(time.time()),
66
+ "model": req.model,
67
+ "choices": [{
68
+ "index": 0,
69
+ "message": data["message"],
70
+ "finish_reason": "stop",
71
+ }],
72
+ "usage": {
73
+ "prompt_tokens": data.get("prompt_eval_count", 0),
74
+ "completion_tokens": data.get("eval_count", 0),
75
+ "total_tokens": data.get("prompt_eval_count", 0) + data.get("eval_count", 0),
76
+ },
77
+ }
78
+
79
+ return app
80
+
81
+
82
+ async def _stream_ollama(ollama_url: str, payload: dict, model: str):
83
+ cid = f"chatcmpl-{uuid.uuid4().hex[:12]}"
84
+ async with httpx.AsyncClient() as client:
85
+ async with client.stream("POST", f"{ollama_url}/api/chat", json=payload, timeout=600) as resp:
86
+ async for line in resp.aiter_lines():
87
+ if not line:
88
+ continue
89
+ data = json.loads(line)
90
+ token = data.get("message", {}).get("content", "")
91
+ done = data.get("done", False)
92
+
93
+ chunk = {
94
+ "id": cid,
95
+ "object": "chat.completion.chunk",
96
+ "created": int(time.time()),
97
+ "model": model,
98
+ "choices": [{
99
+ "index": 0,
100
+ "delta": {"content": token} if token else {},
101
+ "finish_reason": "stop" if done else None,
102
+ }],
103
+ }
104
+ yield f"data: {json.dumps(chunk)}\n\n"
105
+ if done:
106
+ break
107
+ yield "data: [DONE]\n\n"
108
+
109
+
110
+ def start_server(
111
+ host: str = "0.0.0.0",
112
+ port: int = 8000,
113
+ ollama_url: str = "http://localhost:11434",
114
+ api_key: Optional[str] = None,
115
+ ) -> None:
116
+ app = build_app(ollama_url=ollama_url, api_key=api_key)
117
+ uvicorn.run(app, host=host, port=port)
@@ -0,0 +1,79 @@
1
+ Metadata-Version: 2.4
2
+ Name: clovis
3
+ Version: 0.1.0
4
+ Summary: cloooooo — personal LLM client, OpenAI-compatible interface over local Ollama
5
+ Author: Clovis Sfeir
6
+ License: MIT
7
+ Keywords: ai,llm,local-ai,ollama,openai
8
+ Classifier: Development Status :: 3 - Alpha
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: License :: OSI Approved :: MIT License
11
+ Classifier: Programming Language :: Python :: 3
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
16
+ Requires-Python: >=3.10
17
+ Requires-Dist: fastapi>=0.111
18
+ Requires-Dist: httpx>=0.27
19
+ Requires-Dist: pydantic>=2.0
20
+ Requires-Dist: rich>=13.0
21
+ Requires-Dist: typer>=0.12
22
+ Requires-Dist: uvicorn[standard]>=0.30
23
+ Description-Content-Type: text/markdown
24
+
25
+ # clovis
26
+
27
+ OpenAI-compatible Python client over a local [Ollama](https://ollama.com) instance.
28
+
29
+ ## Install
30
+
31
+ ```bash
32
+ pip install clovis
33
+ ```
34
+
35
+ ## Usage
36
+
37
+ ```python
38
+ from clovis import cloooooo
39
+
40
+ client = cloooooo() # connects to localhost:11434 by default
41
+
42
+ # Chat
43
+ resp = client.chat.completions.create(
44
+ model="qwen3-72b",
45
+ messages=[{"role": "user", "content": "Bonjour !"}]
46
+ )
47
+ print(resp.choices[0].message.content)
48
+
49
+ # Streaming
50
+ for chunk in client.chat.completions.create(
51
+ messages=[{"role": "user", "content": "Écris un poème"}],
52
+ stream=True,
53
+ ):
54
+ print(chunk.choices[0].delta.get("content", ""), end="", flush=True)
55
+
56
+ # Conversation with auto history
57
+ with client.conversation(system="Tu es un expert en finance.") as conv:
58
+ print(conv.chat("Explique le CAPM"))
59
+ print(conv.chat("Et ses limites ?")) # remembers context
60
+
61
+ # Start API server
62
+ cloooooo.serve(port=8000, api_key="sk-...")
63
+ ```
64
+
65
+ ## CLI
66
+
67
+ ```bash
68
+ clovis "Explique les trous noirs" # direct question
69
+ clovis repl # interactive conversation
70
+ clovis serve --port 8000 # start API server
71
+ ```
72
+
73
+ ## Config
74
+
75
+ ```bash
76
+ export CLOVIS_MODEL="qwen3-72b"
77
+ export CLOVIS_OLLAMA_URL="http://localhost:11434"
78
+ export CLOVIS_API_KEY="sk-..."
79
+ ```
@@ -0,0 +1,11 @@
1
+ clovis/__init__.py,sha256=w9har65j7dnnEb8-JAsCbW2M8TAwX4lKWKBgM-WrJyQ,76
2
+ clovis/_cli.py,sha256=_XlP76I5SxUKEOvoTFpwn_Sti2sH7zowo9F3zvtYwTw,3708
3
+ clovis/_client.py,sha256=m326IlzJb2_N_rOm5wlYTYndzwBgJPvcne9Ruq6wigI,2083
4
+ clovis/_completions.py,sha256=Yg0PN17wB85_PmW-3mZyD2gCsGhgEl9NYEPzA8jDS00,2791
5
+ clovis/_conversation.py,sha256=F-4TrtiwJJ_E7FipgXUuOgnBHXbxArE3wFA5w_0ZKcA,1990
6
+ clovis/_models.py,sha256=UXieNAiiGGesC9c9WkA4Ig6lvPecOSOCZqdKtjjvxoU,2004
7
+ clovis/_server.py,sha256=xhAHUqFnYM3oGLog4sCEDFmzg6dGqle-HHO8snR9pHY,4077
8
+ clovis-0.1.0.dist-info/METADATA,sha256=p5Y-m1rwFT-zNjxzK7M6PLUfDR5eeUSlBrWCuXMAR3E,2108
9
+ clovis-0.1.0.dist-info/WHEEL,sha256=mffPy8wBnZQn2VnJUU5jE99KsxaSfiyMHV9Yt0aLVxs,87
10
+ clovis-0.1.0.dist-info/entry_points.txt,sha256=BYk0CU0hLdsRV4Mc-XHPUwg3yHwo3M2MW4qELlZNUto,43
11
+ clovis-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: hatchling 1.30.1
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ clovis = clovis._cli:app