File size: 347 Bytes
1778e91 b5f9861 1778e91 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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
]
)
|