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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
273 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 3 for sure
# Programming Language :: Python :: 3.7
setup(
name="example-setup.py",
2023-05-23 17:02:56 +01:00
install_requires=["requests==2.31.0"],
2021-10-14 09:00:15 -07:00
python_requires='>=3.7',
2020-09-29 09:57:29 +02:00
)