forked from marinabox/marinabox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
42 lines (41 loc) · 1.19 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
from setuptools import setup, find_packages
setup(
name="marinabox",
version="0.1.6",
packages=find_packages(),
install_requires=[
"docker",
"requests",
"fastapi",
"uvicorn",
"click",
"boto3",
"streamlit>=1.38.0",
"anthropic[bedrock,vertex]>=0.37.1",
"jsonschema==4.22.0",
"google-auth<3,>=2",
"pytest==8.3.3",
"pytest-asyncio==0.23.6",
"langgraph==0.2.60",
"langchain-anthropic==0.3.1",
"langchain-openai==0.2.2",
"langchain-core==0.3.28"
],
entry_points={
'console_scripts': [
'marinabox=marinabox.cli:cli',
'mb=marinabox.cli:cli',
],
},
author="bayllama",
description="An open-source toolkit for deploying containerized desktops and browsers tailored for AI agents",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/bayllama/marinabox",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.12",
)