mirror of
https://github.com/github/codeql-action.git
synced 2025-12-14 11:29:20 +08:00
12 lines
273 B
Python
12 lines
273 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=[],
|
|
extras_require={"all": ["requests==1.2.3"]}
|
|
)
|