dartpip 0.0.2
dartpip: ^0.0.2 copied to clipboard
Add Python modules (packages) to your Dart or Flutter project. Like `pip`, but for Dart, heavily inspired by the `pub` command.
example/lib/main.dart
import "package:args/command_runner.dart";
import "package:dartpip/dartpip.dart";
Future<void> main(List<String> arguments) async {
final CommandRunner<void> runner = CommandRunner<void>(
"python_ffi_bundler",
"The command line application for bundling Python modules into Dart applications.",
)
..addCommand(BundleModuleCommand())
..addCommand(BundleCommand());
await runner.run(arguments);
}