-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (40 loc) · 1.42 KB
/
Copy pathpyproject.toml
File metadata and controls
44 lines (40 loc) · 1.42 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
[build-system]
requires = ["setuptools>=69"]
build-backend = "setuptools.build_meta"
[project]
name = "paperpilot"
version = "1.6.0"
description = "A CLI research agent for scholarly paper search, evidence synthesis, code discovery, PDF collection, bilingual reports, and Obsidian Wiki."
readme = "README.md"
requires-python = ">=3.10"
license = "MIT"
dependencies = [
"deepxiv-sdk>=0.2.5",
"jinja2>=3.1",
"pypdf>=4.0",
"reportlab>=4.0",
"rich>=13.0",
]
keywords = ["literature-review", "research-agent", "papers", "arxiv", "openalex", "openreview"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
[project.urls]
Homepage = "https://chb-learner.github.io/PaperPilot/"
Documentation = "https://chb-learner.github.io/PaperPilot/"
Repository = "https://github.com/CHB-learner/PaperPilot"
Issues = "https://github.com/CHB-learner/PaperPilot/issues"
Changelog = "https://github.com/CHB-learner/PaperPilot/releases"
[project.scripts]
literature-agent = "literature_agent.cli:main"
PaperPilot = "literature_agent.cli:main"
paperpilot = "literature_agent.cli:main"
[tool.setuptools.packages.find]
include = ["literature_agent*"]