setup.py 783 B

123456789101112131415161718192021222324252627282930
  1. # -*- coding: utf-8 -*-
  2. #!/usr/bin/env python3
  3. #
  4. # Copyright (C) 2019 Intel Corporation. All rights reserved.
  5. # SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. #
  7. # pylint: disable=missing-class-docstring
  8. # pylint: disable=missing-function-docstring
  9. # pylint: disable=missing-module-docstring
  10. from setuptools import setup, find_packages
  11. with open("README.md") as f:
  12. readme = f.read()
  13. with open("LICENSE") as f:
  14. license = f.read()
  15. setup(
  16. name="wamr-python",
  17. version="0.1.0",
  18. description="A WebAssembly runtime powered by WAMR",
  19. long_description=readme,
  20. author="The WAMR Project Developers",
  21. author_email="hello@bytecodealliance.org",
  22. url="https://github.com/bytecodealliance/wamr-python",
  23. license=license,
  24. packages=["wamr"],
  25. )