| | from setuptools import setup, find_packages |
| |
|
| | |
| | with open("README.md", "r", encoding="utf-8") as f: |
| | long_description = f.read() |
| |
|
| | |
| | setup( |
| | name="gemini2-powershell-command-gen", |
| | version="0.1.0", |
| | author="Elias Andrade", |
| | author_email="oeliasandrade@gmail.com", |
| | description="A web application to generate PowerShell commands using Google Gemini 2.", |
| | long_description=long_description, |
| | long_description_content_type="text/markdown", |
| | url="https://github.com/chaos4455/gemini2-powershell-command-gen", |
| | packages=find_packages(), |
| | classifiers=[ |
| | "Programming Language :: Python :: 3", |
| | "License :: OSI Approved :: MIT License", |
| | "Operating System :: OS Independent", |
| | ], |
| | python_requires='>=3.7', |
| | install_requires=[ |
| | "streamlit", |
| | "google-generativeai", |
| | "python-dotenv" |
| | ], |
| | ) |