Hugo Rodrigues
my first Docker HF spaces
1a2596e
raw
history blame contribute delete
900 Bytes
# Copyright (c) Meta Platforms, Inc. and affiliates
# All rights reserved.
#
# This source code is licensed under the license found in the
# MIT_LICENSE file in the root directory of this source tree.
from setuptools import find_packages, setup
setup(
name="seamless_communication",
version="1.0.0",
packages=find_packages(where="src"),
package_dir={"": "src"},
package_data={"": ["py.typed", "cards/*.yaml"]},
description="HF test card",
long_description=open("README.md", encoding="utf-8").read(),
long_description_content_type="text/markdown",
readme="README.md",
python_requires=">=3.8",
author="HF card test",
url="git@hf.co:spaces/HugoLagoRodrigues/openai-whisper-large-v3.2",
license="MIT",
install_requires=[
"fastapi",
],
entry_points={
"console_scripts": [
],
},
include_package_data=True,
)