From 4fcc57c76d932d51d38bc77fcb83cc1173300618 Mon Sep 17 00:00:00 2001 From: SantaSpeen Date: Mon, 2 Sep 2024 23:01:20 +0300 Subject: [PATCH] [+] poetry --- .gitignore | 1 + .idea/_fa-python.iml | 2 +- .idea/misc.xml | 2 +- pyproject.toml | 15 +++++++++++++++ 4 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 pyproject.toml diff --git a/.gitignore b/.gitignore index 5d381cc..f39c5e8 100644 --- a/.gitignore +++ b/.gitignore @@ -160,3 +160,4 @@ cython_debug/ # option (not recommended) you can uncomment the following to ignore the entire idea folder. #.idea/ +poetry.lock diff --git a/.idea/_fa-python.iml b/.idea/_fa-python.iml index 9477bc8..fae7693 100644 --- a/.idea/_fa-python.iml +++ b/.idea/_fa-python.iml @@ -4,7 +4,7 @@ - + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml index db8786c..b9b1550 100644 --- a/.idea/misc.xml +++ b/.idea/misc.xml @@ -3,5 +3,5 @@ - + \ No newline at end of file diff --git a/pyproject.toml b/pyproject.toml new file mode 100644 index 0000000..d6e77d3 --- /dev/null +++ b/pyproject.toml @@ -0,0 +1,15 @@ +[tool.poetry] +name = "fa-python" +version = "0.0.0" +description = "Практические задания по Python для fa.ru" +authors = ["SantaSpeen "] +license = "CNRI OPEN SOURCE GPL-COMPATIBLE LICENSE" +readme = "README.md" + +[tool.poetry.dependencies] +python = "^3.12" + + +[build-system] +requires = ["poetry-core"] +build-backend = "poetry.core.masonry.api"