(*versions: str)
| 92 | |
| 93 | |
| 94 | def python_classifiers(*versions: str) -> list[str]: |
| 95 | classifiers = [ |
| 96 | "Programming Language :: Python", |
| 97 | ] |
| 98 | for version in versions: |
| 99 | classifiers.append(f"Programming Language :: Python :: {version}") |
| 100 | return classifiers |
| 101 | |
| 102 | |
| 103 | class StackStormSetupKwargsRequest(SetupKwargsRequest): |
no outgoing calls
no test coverage detected