-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 957 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 957 Bytes
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
from setuptools import setup, find_packages
setup(
name="robai",
version="0.1.2",
packages=find_packages(),
install_requires=[
"pydantic>=1.10.7",
"faker>=19.3.0",
"loguru>=0.7.0",
"openai>=1.0.0",
"tiktoken>=0.5.0",
"fastapi>=0.100.0",
"websockets>=11.0.0,<15.0.0",
"rich>=13.0.0",
"starlette",
],
# Metadata
author="philmade",
description="RobAI is a powerful framework designed to streamline the construction and utilization of AI robots. By following the steps outlined below, developers can easily integrate AI functionalities into their applications and services.",
keywords="robot ai framework",
url="https://github.com/philmade/robai",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
python_requires=">=3.11",
)