Spaces:
Runtime error
Runtime error
File size: 764 Bytes
8197e7c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
from pathlib import Path
import setuptools
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setuptools.setup(
name="streamlit-audiorec",
version="0.1.3",
author="Stefan Rummer",
author_email="",
description="Record audio from the user's microphone in apps that are deployed to the web. (via Browser Media-API) [GitHub ☆ 160+: steamlit-audio-recorder]",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/stefanrmmr/streamlit-audio-recorder",
packages=setuptools.find_packages(),
include_package_data=True,
classifiers=[],
python_requires=">=3.7",
install_requires=[
"streamlit>=0.63",
],
) |