| export interface UvifyResult { | |
| file: string; | |
| fileType: string; | |
| oneLiner: string; | |
| uvInstallFromSource?: string; | |
| dependencies: string[]; | |
| packageName?: string; | |
| pythonVersion?: string; | |
| isLocal: boolean; | |
| } | |
| export interface UvifyRequest { | |
| source: string; | |
| excludePatterns?: string[]; | |
| includePatterns?: string[]; | |
| } |