Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .python-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3.13
6 changes: 6 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
def main():
print("Hello from fruit-manager-mlf!")


if __name__ == "__main__":
main()
1,498 changes: 0 additions & 1,498 deletions poetry.lock

This file was deleted.

15 changes: 5 additions & 10 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,18 +1,13 @@
[project]
name = "fruit-manager"
name = "fruit-manager-mlf"
version = "0.1.0"
description = ""
authors = [
{name = "Guillaume",email = "mlearnia@gmail.com"}
]
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.12"
requires-python = ">=3.13"
dependencies = [
"streamlit (>=1.45.0,<2.0.0)",
"matplotlib (>=3.10.1,<4.0.0)"
"matplotlib>=3.10.3",
"streamlit>=1.47.0",
]


[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
8 changes: 4 additions & 4 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ Bienvenue sur **Fruit Manager**, un tableau de bord interactif pour gérer votre

## 🛠️ Installation

Création de l'environnement virtuel :
Création de l'environnement virtuel avec UV:
```bash
poetry install
uv venv
```

Lancez le projet avec poetry :
Lancez le projet avec UV :
```bash
poetry run streamlit run app.py
uv run streamlit run app.py
```

## 🚀 Fonctionnalités
Expand Down
Loading