podcaster / setup.py
marks
Upgraded prompt
b5f9861
raw
history blame contribute delete
347 Bytes
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
]
)