39 lines
1.1 KiB
TOML
39 lines
1.1 KiB
TOML
[build-system]
|
|
requires = ["hatchling"]
|
|
build-backend = "hatchling.build"
|
|
|
|
[project]
|
|
name = "ironlicensing"
|
|
version = "1.0.0"
|
|
description = "Software licensing and activation SDK for Python"
|
|
readme = "README.md"
|
|
license = "MIT"
|
|
authors = [
|
|
{ name = "IronServices", email = "support@ironservices.com" }
|
|
]
|
|
keywords = ["licensing", "activation", "license-key", "software-licensing", "feature-flags"]
|
|
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",
|
|
"Typing :: Typed",
|
|
]
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"httpx>=0.24.0",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://www.ironlicensing.com"
|
|
Documentation = "https://www.ironlicensing.com/docs"
|
|
Repository = "https://github.com/IronServices/ironlicensing-python"
|
|
|
|
[tool.hatch.build.targets.wheel]
|
|
packages = ["src/ironlicensing"]
|