| from setuptools import setup, find_packages | |
| setup( | |
| name="podcaster", | |
| version="0.1", | |
| packages=find_packages(), | |
| install_requires=[ | |
| 'rich', | |
| 'requests', | |
| 'python-dotenv', | |
| 'openai', # If using OpenAI | |
| 'anthropic', # If using Claude | |
| 'regex', # For more advanced regex operations | |
| ] | |
| ) | |