27 lines
606 B
TOML
27 lines
606 B
TOML
|
[build-system]
|
||
|
requires = ["hatchling"]
|
||
|
build-backend = "hatchling.build"
|
||
|
|
||
|
[project]
|
||
|
name = "pyadonis"
|
||
|
version = "0.9.1"
|
||
|
authors = [
|
||
|
{ name="Kumi Systems e.U.", email="office@kumi.systems" },
|
||
|
]
|
||
|
description = "A package to communicate with the Adonis API"
|
||
|
readme = "README.md"
|
||
|
license = { file="LICENSE" }
|
||
|
requires-python = ">=3.8"
|
||
|
classifiers = [
|
||
|
"Programming Language :: Python :: 3",
|
||
|
"License :: OSI Approved :: MIT License",
|
||
|
"Operating System :: OS Independent",
|
||
|
]
|
||
|
|
||
|
[project.urls]
|
||
|
"Homepage" = "https://kumig.it/kumisystems/reportmonster.git"
|
||
|
|
||
|
[options]
|
||
|
install_requires = [
|
||
|
"pillow"
|
||
|
]
|