Files
codeql-action/python-setup/tests/setup_py/requests-2/setup.py
T

13 lines
277 B
Python
Raw Normal View History

2020-09-29 09:57:29 +02:00
from setuptools import setup
# has fake Trove classifier to fool Python extractor to believe this is Python 2 for sure
# Programming Language :: Python :: 2.7
setup(
name="example-setup.py",
2021-10-14 09:00:15 -07:00
install_requires=["requests==2.26.0"],
2020-09-29 09:57:29 +02:00
python_requires=">=2.7, <3",
)