-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (46 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
54 lines (46 loc) · 1.08 KB
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
48
49
50
51
52
53
54
[tool.poetry]
name = "llmsat"
version = "0.1.0"
description = "An LLM-based autonomous agent for space exploration"
authors = ["David Maranto <D.Maranto1122@gmail.com>"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
python-decouple = "^3.8"
pydantic = "^2.3.0"
pytest = "^7.4.1"
astropy = "^5.3.2"
krpc = "^0.5.3"
cmd2 = "^2.4.3"
argdantic = "^1.0.0"
docopt = "^0.6.2"
openai = "^1.3.3"
pexpect = "^4.8.0"
wexpect = "^4.0.0"
pandas = "^2.1.3"
ipykernel = "^6.28.0"
plotly = "^5.18.0"
langchain = "^0.1.0"
langchain-openai = "^0.0.5"
nbformat = "^5.9.2"
beartype = "^0.17.1"
[tool.poetry.group.dev.dependencies]
ruff = "^0.2.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
addopts = "--verbose --color=yes --capture=no"
[tool.ruff]
line-length = 88
indent-width = 4
extend-include = ["*.ipynb"]
[tool.ruff.lint]
fixable = ["ALL"]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
skip-magic-trailing-comma = false
line-ending = "auto"
docstring-code-format = true
docstring-code-line-length = "dynamic"