-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
102 lines (92 loc) · 2.32 KB
/
Copy pathpyproject.toml
File metadata and controls
102 lines (92 loc) · 2.32 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = ["hatchling>=1.18"]
build-backend = "hatchling.build"
[project]
name = "paperfessor"
version = "1.3.0"
description = "Three-agent research assistant: a research direction in, a survey + real experiments + a venue-formatted paper out"
readme = "README.md"
license = "MIT"
requires-python = ">=3.11"
authors = [
{ name = "Paperfessor Project" },
]
keywords = [
"ai", "agent", "research", "paper", "paperfessor",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
]
dependencies = [
"typer>=0.12.0",
"rich>=13.7.0",
"pydantic>=2.6.0",
"pydantic-settings>=2.2.0",
"httpx>=0.27.0",
"litellm>=1.40.0",
"keyring>=24.3.0",
"platformdirs>=4.2.0",
"PyYAML>=6.0.1",
"cryptography>=42.0.0",
"tenacity>=8.2.3",
"tiktoken>=0.7.0",
"requests>=2.31.0",
"numpy>=1.26.0",
"scikit-learn>=1.4.0",
"matplotlib>=3.8.0",
"pypdf>=4.0.0",
"pypdfium2>=4.28.0",
"pillow>=10.0.0",
]
[project.optional-dependencies]
gui = [
"PyQt6>=6.6.0",
"PyQt6-WebEngine>=6.6.0",
]
web = [
"playwright>=1.44.0",
]
dev = [
"pytest>=8.0.0",
"pytest-asyncio>=0.23.0",
"pytest-cov>=4.1.0",
"ruff>=0.3.0",
"mypy>=1.8.0",
]
[project.scripts]
paperfessor = "paperfessor.cli.app:app"
paperfessor-gui = "paperfessor.gui.app:main"
[tool.hatch.build.targets.wheel]
packages = ["paperfessor"]
[tool.hatch.build.targets.wheel.force-include]
# Agent skill files ship inside the package so installed copies get
# the same prompt-injected skills as a repo checkout.
"Skill" = "paperfessor/Skill"
[tool.hatch.build.targets.sdist]
include = [
"paperfessor",
"Skill",
"README.md",
"LICENSE",
"pyproject.toml",
]
[tool.ruff]
line-length = 100
target-version = "py311"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "N", "UP", "B", "C4", "SIM"]
ignore = ["E501", "B008"]
[tool.mypy]
python_version = "3.11"
ignore_missing_imports = true
[tool.pytest.ini_options]
minversion = "8.0"
testpaths = ["tests"]
asyncio_mode = "auto"