Files
evercatch-python/pyproject.toml

29 lines
894 B
TOML

[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "evercatch"
version = "0.0.1"
description = "Official Python SDK for Evercatch webhook infrastructure platform."
authors = ["Evercatch <support@evercatch.dev>"]
license = "MIT"
readme = "README.md"
repository = "https://git.psmattas.com/evercatch/evercatch-python"
keywords = ["evercatch", "sdk", "api", "webhooks"]
# These classifiers are important for PyPI to categorize your package correctly
classifiers = [
"Development Status :: 1 - Planning",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
]
# This tells Poetry that your package code is in the 'evercatch' folder
packages = [{ include = "evercatch" }]
[tool.poetry.dependencies]
python = "^3.12"