(data: PyProjectToml)
| 5 | * Serialize a PyProjectToml to TOML string format. |
| 6 | */ |
| 7 | export function stringifyManifest(data: PyProjectToml): string { |
| 8 | return toml.stringify(data); |
| 9 | } |
| 10 | |
| 11 | /** |
| 12 | * Options for creating a minimal pyproject.toml structure. |
no outgoing calls
no test coverage detected