add config files

master
histausse 3 years ago
parent 486dead4be
commit 3b0938293b
Signed by: histausse
GPG Key ID: 67486F107F62E9E9

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

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

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

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