-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpyproject.toml
49 lines (43 loc) · 1.46 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
48
49
[tool.poetry]
name = "plexsearch"
version = "0.2.2"
description = "A powerful Python tool for performing technical searches using the Perplexity API"
authors = ["Tom Doerr"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/tom-doerr/perplexity_search"
documentation = "https://github.com/tom-doerr/perplexity_search#readme"
packages = [{include = "plexsearch"}]
keywords = ["search", "perplexity", "ai", "llm"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[tool.poetry.dependencies]
python = ">=3.7"
requests = "^2.25.0"
rich = "^13.7.0"
feedparser = "^6.0.0"
packaging = "^23.0"
[tool.poetry.group.dev.dependencies]
pytest = "^7.4.0"
[tool.poetry.scripts]
plexsearch = "plexsearch.core:main"
[tool.poetry.urls]
"Homepage" = "https://github.com/tom-doerr/perplexity_search"
"Bug Tracker" = "https://github.com/tom-doerr/perplexity_search/issues"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
markers = [
"integration: marks tests as integration tests (deselect with '-m \"not integration\"')"
]