Add workflow for testing python setup

This commit is contained in:
David Verdeguer
2020-09-29 09:57:29 +02:00
parent 18312707fe
commit 67ddca1d9c
33 changed files with 495 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
from setuptools import setup
setup(
name="example-setup.py",
install_requires=["requests==10000"],
)