-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (30 loc) · 982 Bytes
/
pyproject.toml
File metadata and controls
34 lines (30 loc) · 982 Bytes
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
[build-system]
requires = ["hatchling>=1.27.0"]
build-backend = "hatchling.build"
[project]
name = "zoty"
version = "0.2.0"
description = "Lightweight Zotero MCP server for AI agent interaction"
requires-python = ">=3.10"
dependencies = ["mcp", "bm25s", "pyzotero"]
license = "MIT"
readme = "README.md"
authors = [{name = "Eric Tramel"}]
keywords = ["zotero", "mcp", "ai", "research", "bibliography"]
classifiers = [
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering",
]
[project.urls]
Homepage = "https://github.com/eric-tramel/zoty"
Repository = "https://github.com/eric-tramel/zoty"
[project.scripts]
zoty = "zoty:main"
[tool.hatch.build.targets.wheel]
packages = ["src/zoty"]