aboutsummaryrefslogtreecommitdiffstats
path: root/pyproject.toml
blob: 1fc65ec9e56bbb9449a601af9ed8ba1d6882bd1a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "meow-mcp"
version = "0.1.0"
description = "Add your description here"
readme = "README.md"
requires-python = ">=3.13"
dependencies = [
    "fastapi>=0.120.0",
    "rpaudio",
    "fastmcp",
]

[project.scripts]
meow-mcp = "meow_mcp.main:main"

[tool.setuptools.packages.find]
where = ["src"]

[tool.setuptools.package-data]
"meow_mcp" = ["meow_mcp/meow.mp3"]