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"