forked from Advanced_Python/advanced-python-homework-2023
16 lines
642 B
TOML
16 lines
642 B
TOML
[build-system]
|
|
requires = ["setuptools", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.poetry]
|
|
name = "Memorizer"
|
|
version = "0.0.1"
|
|
description = "A utility that will help you learn new English words, mathematical theorems with proofs, etc. It doesn't matter what kind of object you want to learn. You can upload a question and answer, set repetition frequency and response time. The basic idea is to ask you what you have chosen, for the time you have chosen, then show the answer."
|
|
authors = ["Petr Andreev <petr96andreev@gmail.com>"]
|
|
license = "MIT"
|
|
|
|
[tool.poetry.dependencies]
|
|
python = "^3.11"
|
|
|
|
[tool.poetry.dev-dependencies]
|