CoolFace
Apppublic

chaos4455/Gemini-2.0-Python-Env-Setup-Pip-command-Gen-ENG

sourceHugging Faceapache-2.0updated 2y agoView on Hugging Face
0likes
setup.py29 linesDownload Raw Back to root
1from setuptools import setup, find_packages2 3# Read the contents of your README.md file4with open("README.md", "r", encoding="utf-8") as f:5    long_description = f.read()6 7# Configuration for your package8setup(9    name="gemini2-powershell-command-gen",  # Name of your project10    version="0.1.0",  # Version of your project11    author="Elias Andrade",  # Your name12    author_email="oeliasandrade@gmail.com",  # Your email13    description="A web application to generate PowerShell commands using Google Gemini 2.",  # A brief description14    long_description=long_description,  # Long description from README.md15    long_description_content_type="text/markdown", # Specifies the format of the long description16    url="https://github.com/chaos4455/gemini2-powershell-command-gen",  # URL of your repository17    packages=find_packages(), # Automatically find all packages within the project18    classifiers=[ # Metadata for your project19        "Programming Language :: Python :: 3", # Specifies the programming language and version20        "License :: OSI Approved :: MIT License", # License used21        "Operating System :: OS Independent", # Specifies that the code is OS-independent22    ],23    python_requires='>=3.7',  # Minimum Python version required24    install_requires=[  # Dependencies required to install the package25      "streamlit",26      "google-generativeai",27      "python-dotenv"28    ],29)