24 lines
445 B
TOML
24 lines
445 B
TOML
[project]
|
|
name = "pygateway"
|
|
version = "0.1.0"
|
|
description = ""
|
|
authors = [
|
|
{name = "bvn13",email = "from.github@bvn13.me"}
|
|
]
|
|
readme = "README.md"
|
|
requires-python = ">=3.13"
|
|
dependencies = [
|
|
"httpserver (>=1.1.0,<2.0.0)",
|
|
"requests (>=2.32.3,<3.0.0)"
|
|
]
|
|
packages = [
|
|
{ include = "pygateway" }
|
|
]
|
|
|
|
|
|
[build-system]
|
|
requires = ["poetry-core>=2.0.0,<3.0.0"]
|
|
build-backend = "poetry.core.masonry.api"
|
|
|
|
[tool.poetry]
|
|
package-mode = false |