CoolFace
Apppublic

Prathamesh1420/Fire_detection_streamlit

sourceHugging Faceupdated 2y agoView on Hugging Face
3likes
setup.py24 linesDownload Raw Back to root
1from pathlib import Path2 3import setuptools4 5this_directory = Path(__file__).parent6long_description = (this_directory / "README.md").read_text()7 8setuptools.setup(9    name="streamlit-camera-input-live",10    version="0.2.0",11    author="Zachary Blackwood",12    author_email="zachary@streamlit.io",13    description="Alternative version of st.camera_input which returns the webcam images live, without any button press needed",14    long_description=long_description,15    long_description_content_type="text/markdown",16    packages=setuptools.find_packages(where="src"),17    package_dir={"": "src"},18    include_package_data=True,19    classifiers=[],20    python_requires=">=3.7",21    install_requires=["streamlit>=1.2", "jinja2"],22    url="https://github.com/blackary/streamlit-camera-input-live",23)24 
Prathamesh1420/Fire_detection_streamlit · CoolFace