26 lines
611 B
TOML
26 lines
611 B
TOML
[project]
|
|
name = "demo-concurrence"
|
|
version = "0.1.0"
|
|
description = "Démonstration sur la concurrence en Python (AsyncIO et Multiprocessing)"
|
|
authors = [
|
|
{name = "Your Name", email = "you@example.com"}
|
|
]
|
|
readme = "README.md"
|
|
classifiers = [
|
|
"Programming Language :: Python :: 3.13",
|
|
]
|
|
keywords = ["asyncio", "concurrency", "multiprocessing"]
|
|
requires-python = ">=3.13"
|
|
|
|
[tool.poetry]
|
|
package-mode = false
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.13"
|
|
requests = "^2.31.0"
|
|
aiohttp = "^3.9.1"
|
|
aiofiles = "^23.2.1"
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=1.0.0"]
|
|
build-backend = "poetry.core.masonry.api" |