-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 769 Bytes
/
pyproject.toml
File metadata and controls
29 lines (26 loc) · 769 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
[project]
name = "cite-nexus-mcp"
version = "0.1.0"
description = "A Model Context Protocol (MCP) server for academic paper search, citation formatting, and impact metrics using Google Scholar and LLM elicitation."
readme = "README.md"
requires-python = ">=3.11"
license = { text = "MIT" }
dependencies = [
"mcp>=1.1.2",
"google-search-results>=2.4.0",
"python-dotenv>=1.0.0",
"requests>=2.25.0",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[[project.authors]]
name = "akougkas.io (Anthony K)"
email = "a.kougkas@gmail.com"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project.scripts]
cite-nexus-mcp = "cite_nexus_mcp:main"