add config files for pip packaging
This commit is contained in:
parent
ae7d860265
commit
9c993c86e7
4 changed files with 21 additions and 0 deletions
4
pyproject.toml
Normal file
4
pyproject.toml
Normal file
|
@ -0,0 +1,4 @@
|
|||
[build-system]
|
||||
requires = ["setuptools>=42.0", "wheel"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
12
setup.cfg
Normal file
12
setup.cfg
Normal 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
5
setup.py
Normal file
|
@ -0,0 +1,5 @@
|
|||
from setuptools import setup
|
||||
|
||||
if __name__ == "__main__":
|
||||
setup()
|
||||
|
0
src/matrix_bot/__init__.py
Normal file
0
src/matrix_bot/__init__.py
Normal file
Loading…
Reference in a new issue