49 lines
1.3 KiB
TOML
49 lines
1.3 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "ironnotify"
|
|
version = "0.1.0"
|
|
description = "IronNotify SDK for Python - Event notifications and alerts"
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
requires-python = ">=3.8"
|
|
authors = [
|
|
{ name = "IronServices", email = "support@ironservices.com" }
|
|
]
|
|
keywords = ["ironnotify", "notifications", "alerts", "events", "real-time", "websocket"]
|
|
classifiers = [
|
|
"Development Status :: 4 - Beta",
|
|
"Intended Audience :: Developers",
|
|
"License :: OSI Approved :: MIT License",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.8",
|
|
"Programming Language :: Python :: 3.9",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
]
|
|
dependencies = [
|
|
"httpx>=0.25.0",
|
|
"websockets>=12.0",
|
|
]
|
|
|
|
[project.optional-dependencies]
|
|
dev = [
|
|
"pytest>=7.0.0",
|
|
"pytest-asyncio>=0.21.0",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://www.ironnotify.com"
|
|
Documentation = "https://www.ironnotify.com/docs"
|
|
Repository = "https://github.com/IronServices/ironnotify-python"
|
|
|
|
[tool.hatch.build.targets.sdist]
|
|
include = ["/src"]
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/ironnotify"]
|