Convert to package to import to AcadeMon

This commit is contained in:
Kumi 2022-08-08 09:31:13 +00:00
parent e7bfb3b379
commit 100435856a
Signed by: kumi
GPG key ID: ECBCC9082395383F
11 changed files with 30 additions and 4 deletions

3
.gitignore vendored
View file

@ -1,4 +1,5 @@
venv/
*.pyc
__pycache__/
settings.ini
settings.ini
dist/

View file

@ -1,6 +1,4 @@
MIT License
Copyright (c) 2022 Kumi Systems e.U. <office@kumi.systems>
Copyright (c) 2021 - 2022 Kumi Systems e.U. <office@kumi.systems>
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal

0
README.md Normal file
View file

27
pyproject.toml Normal file
View file

@ -0,0 +1,27 @@
[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"
]