CoolFace
Apppublic

chaos4455/RealTimeDashCPUMonitor

sourceHugging Faceupdated 2y agoView on Hugging Face
0likes
setup.py27 linesDownload Raw Back to root
1from setuptools import setup, find_packages2 3setup(4    name="meu_projeto_streamlit_plotly",5    version="0.1.0",6    description="Projeto de exemplo utilizando Streamlit, Plotly, e psutil",7    author="Elias Andrade",8    author_email="oeliasandrade@gmail.com",9    packages=find_packages(),10    install_requires=[11        "psutil",12        "streamlit",13        "plotly"14    ],15    entry_points={16        'console_scripts': [17            'meu_projeto=main:main',  # Altere conforme seu script principal18        ],19    },20    classifiers=[21        "Programming Language :: Python :: 3",22        "License :: OSI Approved :: MIT License",23        "Operating System :: OS Independent",24    ],25    python_requires='>=3.6',26)27