diff --git a/setup.py b/setup.py --- a/setup.py +++ b/setup.py @@ -15,6 +15,12 @@ setup( "lm=lm.__main__:main", ], }, + extras_require={ + "openai": ["openai>=0.27.0"], + "arweave": ["pyarweave>=0.1.0"], + "all": [ + "openai>=0.27.0", + "pyarweave>=0.1.0", + ], + }, install_requires=[ "aiofiles==0.6.0", ], )