-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (41 loc) · 1.25 KB
/
pyproject.toml
File metadata and controls
45 lines (41 loc) · 1.25 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
[tool.poetry]
name = "pplx-cli"
version = "0.2.6"
description = "A command-line notes and RAG interface for Perplexity AI API"
authors = ["xerexcoded <arnavbanerjee61@gmail.com>"]
readme = "README.md"
homepage = "https://github.com/xerexcoded/pplx-cli"
repository = "https://github.com/xerexcoded/pplx-cli"
documentation = "https://github.com/xerexcoded/pplx-cli#readme"
keywords = ["perplexity", "ai", "cli", "llm"]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
]
[tool.poetry.dependencies]
python = "^3.12"
numpy = "^1.26.0"
pandas = "^2.1.0"
python-dotenv = "^1.0.1"
requests = "^2.31.0"
sentence-transformers = "^3.0.0"
sqlite-utils = ">=3.35,<3.38"
typer = "^0.15.0"
click = ">=8.0.0,<8.2.0"
openpyxl = "^3.1.5"
transformers = "^4.40.0"
torch = "^2.0.0"
toml = "^0.10.2"
[tool.poetry.group.test.dependencies]
pytest = "^7.4.0"
requests-mock = "^1.11.0"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
perplexity = "pplx_cli.cli:app"