22 lines
404 B
TOML
22 lines
404 B
TOML
[project]
|
|
name = "srgweb"
|
|
version = "0.1.0"
|
|
description = "Python client for SRG web services"
|
|
authors = [
|
|
{name = "uskovgs",email = "uskov@cosmos.ru"}
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.9"
|
|
dependencies = [
|
|
"requests",
|
|
"beautifulsoup4",
|
|
"pandas",
|
|
"rich",
|
|
"pyjanitor"
|
|
]
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|