Files
LLM_Engineering_OLD/week4/community-contributions/ai_code_converter/setup.py
2025-03-28 22:06:30 +00:00

19 lines
402 B
Python

from setuptools import setup, find_packages
setup(
name="ai_code_converter",
version="1.0.0",
packages=find_packages(),
package_data={
'src.ai_code_converter': ['template.j2'],
},
install_requires=[
'gradio',
'openai',
'anthropic',
'google-generativeai',
'python-dotenv',
'jinja2',
],
python_requires='>=3.10',
)