-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
34 lines (29 loc) · 955 Bytes
/
Copy pathpyproject.toml
File metadata and controls
34 lines (29 loc) · 955 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 = ["setuptools>=68"]
build-backend = "setuptools.build_meta"
[project]
name = "instinct-mcp"
version = "0.1.1"
description = "Self-learning memory for AI coding agents — pattern detection, confidence scoring, auto-promotion via MCP"
requires-python = ">=3.11"
readme = "README.md"
keywords = ["mcp", "ai-agent", "memory", "instinct", "claude-code", "cursor", "goose"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries",
]
license = {text = "MIT"}
dependencies = [
"mcp>=1.0.0",
]
[project.urls]
Homepage = "https://github.com/yakuphanycl/instinct"
Issues = "https://github.com/yakuphanycl/instinct/issues"
[project.scripts]
instinct = "instinct.cli:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pytest.ini_options]
testpaths = ["tests"]