add config files for pip packaging

master
histausse 3 years ago
parent ae7d860265
commit 9c993c86e7
Signed by: histausse
GPG Key ID: 67486F107F62E9E9

@ -0,0 +1,4 @@
[build-system]
requires = ["setuptools>=42.0", "wheel"]
build-backend = "setuptools.build_meta"

@ -0,0 +1,12 @@
[metadata]
name = matrix-bot
author = Jean-Marie 'Histausse' Mineau
author_email = histausse@protonmail
description = A package implementing a reusable class to make matrix bots.
long_description = file:README.md
url = https://gitea.auro.re/histausse/matrix-bot
[options]
packages = matrix_bot
python_requires = >=3.6
package_dir = =src

@ -0,0 +1,5 @@
from setuptools import setup
if __name__ == "__main__":
setup()
Loading…
Cancel
Save