pubspec.yaml 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. name: pocketpy
  2. description: A lightweight Python interpreter for game engines. It supports Android/iOS/Windows/Linux/MacOS.
  3. version: 2.0.7
  4. homepage: https://pocketpy.dev
  5. repository: https://github.com/pocketpy/pocketpy
  6. environment:
  7. sdk: '>=3.3.0 <4.0.0'
  8. flutter: '>=3.3.0'
  9. dependencies:
  10. flutter:
  11. sdk: flutter
  12. plugin_platform_interface: ^2.0.2
  13. ffi: ^2.1.0
  14. dev_dependencies:
  15. ffigen: ^9.0.1
  16. flutter_test:
  17. sdk: flutter
  18. flutter_lints: ^3.0.0
  19. # For information on the generic Dart part of this file, see the
  20. # following page: https://dart.dev/tools/pub/pubspec
  21. # The following section is specific to Flutter packages.
  22. flutter:
  23. # This section identifies this Flutter project as a plugin project.
  24. # The 'pluginClass' specifies the class (in Java, Kotlin, Swift, Objective-C, etc.)
  25. # which should be registered in the plugin registry. This is required for
  26. # using method channels.
  27. # The Android 'package' specifies package in which the registered class is.
  28. # This is required for using method channels on Android.
  29. # The 'ffiPlugin' specifies that native code should be built and bundled.
  30. # This is required for using `dart:ffi`.
  31. # All these are used by the tooling to maintain consistency when
  32. # adding or updating assets for this project.
  33. #
  34. # Please refer to README.md for a detailed explanation.
  35. plugin:
  36. platforms:
  37. android:
  38. ffiPlugin: true
  39. ios:
  40. ffiPlugin: true
  41. linux:
  42. ffiPlugin: true
  43. macos:
  44. ffiPlugin: true
  45. windows:
  46. ffiPlugin: true