-
Notifications
You must be signed in to change notification settings - Fork 48
/
pyproject.toml
47 lines (44 loc) · 1.35 KB
/
pyproject.toml
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
43
44
45
46
47
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "jpl-rosa"
version = "1.0.7"
description = "ROSA: the Robot Operating System Agent"
readme = "README.md"
authors = [{ name = "Rob Royce", email = "Rob.Royce@jpl.nasa.gov" }]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: Unix",
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
keywords = ["Robotics", "Data Science", "Machine Learning", "Data Engineering", "Data Infrastructure", "Data Analysis"]
requires-python = ">=3.9, <4"
dependencies = [
"PyYAML==6.0.1",
"python-dotenv>=1.0.1",
"langchain==0.3.2",
"langchain-community==0.3.1",
"langchain-core==0.3.9",
"langchain-openai==0.2.2",
"langchain-ollama==0.2.0",
"pydantic",
"pyinputplus",
"azure-identity",
"cffi",
"rich",
"pillow>=10.4.0",
"numpy>=1.26.4",
]
[project.urls]
"Homepage" = "https://github.com/nasa-jpl/rosa"
"Bug Tracker" = "https://github.com/nasa-jpl/rosa/issues"
[tool.setuptools.packages.find]
where = ["src"]