21 lines
388 B
TOML
21 lines
388 B
TOML
[project]
|
|
name = "zbirnik"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = [
|
|
{ name = "Timon", email = "timonbub@gmail.com" }
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.10"
|
|
dependencies = [
|
|
"ply>=3.11,<4.0"
|
|
]
|
|
|
|
[tool.poetry]
|
|
packages = [
|
|
{ include = "zbirnik", from = "src" }
|
|
]
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|