advanced-python-homework-2023/pyproject.toml

30 lines
545 B
TOML
Raw Normal View History

2023-09-28 21:47:21 +03:00
[project]
name = "spam"
2023-09-29 17:46:34 +03:00
version = "2023.0.0"
2023-09-28 21:47:21 +03:00
description = "Lovely Spam! Wonderful Spam!"
2023-09-29 17:46:34 +03:00
readme = "README.md"
2023-09-28 21:47:21 +03:00
requires-python = ">=3.7"
license = {file = "LICENSE.txt"}
keywords = ["SCADA", "mipt"]
authors = [
{email = "tambovtsev.io@phystech.edu"},
{name = "Ilia Tambovtsev"}
]
classifiers = [
"Programming Language :: Python"
]
dependencies = [
"numpy",
"scipy"
]
[project.optional-dependencies]
test = [
"pytest < 5.0.0",
]
[project.urls]
2023-09-29 17:46:34 +03:00
repository = "https://git.sciprog.center/tambovtsev.io/advanced-python-homework-2023"