-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
50 lines (44 loc) · 1.32 KB
/
pyproject.toml
File metadata and controls
50 lines (44 loc) · 1.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
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "renderarxiv"
version = "0.1.0"
description = "Search arXiv and render results into human + LLM-friendly formats"
readme = "README.md"
license = {text = "MIT"}
authors = [
{name = "Your Name"},
]
requires-python = ">=3.10"
keywords = ["arxiv", "papers", "research", "preprints", "LLM", "machine learning", "AI"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Information Analysis",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"requests>=2.31.0",
"feedparser>=6.0.10",
"beautifulsoup4>=4.12.3",
"python-dotenv>=1.0.1",
"pydantic>=2.9.2",
"pygments>=2.19.0",
]
[project.optional-dependencies]
semantic = [
"sentence-transformers>=2.2.2",
]
[project.scripts]
renderarxiv = "renderarxiv.cli:main"
[tool.setuptools]
packages = ["renderarxiv"]
[project.urls]
Homepage = "https://github.com/peterdunson/renderarxiv"
Repository = "https://github.com/peterdunson/renderarxiv"