setup.py 424 B

123456789101112131415
  1. # Copyright (c) Meta Platforms, Inc. and affiliates
  2. # All rights reserved.
  3. #
  4. # This source code is licensed under the license found in the
  5. # LICENSE file in the root directory of this source tree.
  6. from setuptools import find_packages, setup
  7. setup(
  8. name="seamless_communication",
  9. version="0.1",
  10. packages=find_packages(where="src"),
  11. package_dir={"": "src"},
  12. package_data={"": ["assets/cards/*.yaml"]},
  13. )