[+] poetry

This commit is contained in:
Maxim Khomutov 2024-09-02 23:01:20 +03:00
parent e5caedf2a8
commit 4fcc57c76d
4 changed files with 18 additions and 2 deletions

1
.gitignore vendored
View File

@ -160,3 +160,4 @@ cython_debug/
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
#.idea/
poetry.lock

2
.idea/_fa-python.iml generated
View File

@ -4,7 +4,7 @@
<content url="file://$MODULE_DIR$">
<sourceFolder url="file://$MODULE_DIR$/src" isTestSource="false" />
</content>
<orderEntry type="inheritedJdk" />
<orderEntry type="jdk" jdkName="Poetry (_fa-python)" jdkType="Python SDK" />
<orderEntry type="sourceFolder" forTests="false" />
</component>
</module>

2
.idea/misc.xml generated
View File

@ -3,5 +3,5 @@
<component name="Black">
<option name="sdkName" value="Python 3.12" />
</component>
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.12" project-jdk-type="Python SDK" />
<component name="ProjectRootManager" version="2" project-jdk-name="Poetry (_fa-python)" project-jdk-type="Python SDK" />
</project>

15
pyproject.toml Normal file
View File

@ -0,0 +1,15 @@
[tool.poetry]
name = "fa-python"
version = "0.0.0"
description = "Практические задания по Python для fa.ru"
authors = ["SantaSpeen <SantaSpeen@yandex.ru>"]
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"