add config files

This commit is contained in:
histausse 2021-09-28 17:34:31 +02:00
parent 486dead4be
commit 3b0938293b
Signed by: histausse
GPG key ID: 67486F107F62E9E9
5 changed files with 21 additions and 1 deletions

View file

@ -1,3 +1,5 @@
# test-pip
Some test with python packaging.
Some test with python packaging.
Inspired by videos form [mCoding](https://www.youtube.com/channel/UCaiL2GDNpLYH6Wokkk1VNcg)

3
pyproject.toml Normal file
View file

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

11
setup.cfg Normal file
View file

@ -0,0 +1,11 @@
[metadata]
name = test-pip
description = A test of python packaging
author = Histausse <histausse@protonmail.com>
platforms = unix, linux, osx, cygwin, win32
[options]
packages = test-pip
python_requires = >=3.6
package_dir = =src
zip_safe = no

4
setup.py Normal file
View file

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