Files
codeql-action/python-setup/tests/setup_py/wrong-python-version/setup.py
2020-09-29 09:57:29 +02:00

13 lines
276 B
Python

from setuptools import setup
# has fake Trove classifier to fool Python extractor to believe this is Python 3 for sure
# Programming Language :: Python :: 3.7
setup(
name="example-setup.py",
install_requires=["requests==1.2.3"],
python_requires=">=2.7, <3",
)