ya.make 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. PY2_LIBRARY()
  2. LICENSE(Apache-2.0)
  3. VERSION(1.3.7)
  4. NO_LINT()
  5. PEERDIR(
  6. contrib/python/botocore
  7. contrib/python/boto
  8. contrib/python/cookies
  9. contrib/python/requests
  10. contrib/python/responses
  11. contrib/python/Werkzeug
  12. contrib/python/Jinja2
  13. contrib/python/xmltodict
  14. contrib/python/pytz
  15. contrib/python/Flask
  16. library/python/resource
  17. )
  18. PY_SRCS(
  19. TOP_LEVEL
  20. moto/__init__.py
  21. moto/settings.py
  22. moto/compat.py
  23. moto/backends.py
  24. moto/server.py
  25. moto/core/__init__.py
  26. moto/core/exceptions.py
  27. moto/core/models.py
  28. moto/core/responses.py
  29. moto/core/urls.py
  30. moto/core/utils.py
  31. moto/ec2/__init__.py
  32. moto/ec2/exceptions.py
  33. moto/ec2/models.py
  34. moto/ec2/responses/__init__.py
  35. moto/ec2/responses/account_attributes.py
  36. moto/ec2/responses/amazon_dev_pay.py
  37. moto/ec2/responses/amis.py
  38. moto/ec2/responses/availability_zones_and_regions.py
  39. moto/ec2/responses/customer_gateways.py
  40. moto/ec2/responses/dhcp_options.py
  41. moto/ec2/responses/elastic_block_store.py
  42. moto/ec2/responses/elastic_ip_addresses.py
  43. moto/ec2/responses/elastic_network_interfaces.py
  44. moto/ec2/responses/general.py
  45. moto/ec2/responses/instances.py
  46. moto/ec2/responses/internet_gateways.py
  47. moto/ec2/responses/ip_addresses.py
  48. moto/ec2/responses/key_pairs.py
  49. moto/ec2/responses/monitoring.py
  50. moto/ec2/responses/nat_gateways.py
  51. moto/ec2/responses/network_acls.py
  52. moto/ec2/responses/placement_groups.py
  53. moto/ec2/responses/reserved_instances.py
  54. moto/ec2/responses/route_tables.py
  55. moto/ec2/responses/security_groups.py
  56. moto/ec2/responses/spot_fleets.py
  57. moto/ec2/responses/spot_instances.py
  58. moto/ec2/responses/subnets.py
  59. moto/ec2/responses/tags.py
  60. moto/ec2/responses/virtual_private_gateways.py
  61. moto/ec2/responses/vm_export.py
  62. moto/ec2/responses/vm_import.py
  63. moto/ec2/responses/vpc_peering_connections.py
  64. moto/ec2/responses/vpcs.py
  65. moto/ec2/responses/vpn_connections.py
  66. moto/ec2/responses/windows.py
  67. moto/ec2/urls.py
  68. moto/ec2/utils.py
  69. moto/iam/aws_managed_policies.py
  70. moto/iam/exceptions.py
  71. moto/iam/__init__.py
  72. moto/iam/models.py
  73. moto/iam/responses.py
  74. moto/iam/urls.py
  75. moto/iam/utils.py
  76. moto/kms/__init__.py
  77. moto/kms/models.py
  78. moto/kms/responses.py
  79. moto/kms/urls.py
  80. moto/kms/utils.py
  81. moto/route53/__init__.py
  82. moto/route53/models.py
  83. moto/route53/responses.py
  84. moto/route53/urls.py
  85. moto/s3/__init__.py
  86. moto/s3/exceptions.py
  87. moto/s3/models.py
  88. moto/s3/urls.py
  89. moto/s3/utils.py
  90. moto/s3/responses.py
  91. moto/s3bucket_path/__init__.py
  92. moto/s3bucket_path/utils.py
  93. moto/sts/__init__.py
  94. moto/sts/models.py
  95. moto/sts/responses.py
  96. moto/sts/urls.py
  97. moto/packages/__init__.py
  98. moto/packages/httpretty/__init__.py
  99. moto/packages/httpretty/compat.py
  100. moto/packages/httpretty/core.py
  101. moto/packages/httpretty/errors.py
  102. moto/packages/httpretty/http.py
  103. moto/packages/httpretty/utils.py
  104. moto/instance_metadata/__init__.py
  105. moto/instance_metadata/models.py
  106. moto/instance_metadata/responses.py
  107. moto/instance_metadata/urls.py
  108. )
  109. RESOURCE(
  110. moto/ec2/resources/amis.json resource/amis.json
  111. moto/ec2/resources/instance_types.json resource/instance_types.json
  112. )
  113. END()