add config files for pip packaging

This commit is contained in:
histausse 2021-10-02 22:31:11 +02:00
parent ae7d860265
commit 9c993c86e7
Signed by: histausse
GPG key ID: 67486F107F62E9E9
4 changed files with 21 additions and 0 deletions

4
pyproject.toml Normal file
View file

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

12
setup.cfg Normal file
View file

@ -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

5
setup.py Normal file
View file

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

View file