rogeliorichman's picture
Upload folder using huggingface_hub
b2b4dfa verified
raw
history blame contribute delete
318 Bytes
from setuptools import setup, find_packages
setup(
name="transcript_transformer",
version="0.1.0",
packages=find_packages(),
install_requires=[
line.strip()
for line in open("requirements.txt")
if line.strip() and not line.startswith("#")
],
python_requires=">=3.8",
)