-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
60 lines (54 loc) · 1.8 KB
/
Copy pathpyproject.toml
File metadata and controls
60 lines (54 loc) · 1.8 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
51
52
53
54
55
56
57
58
59
60
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "hermes-sonus"
version = "2.0.0"
description = "Sonic alchemy for Hermes Agent — Suno AI music generation, MIDI composition, OpenBCI felt-experience EEG, and a complete dashboard surface. Dual-mode with MCP server."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [{name = "buckster123"}]
keywords = ["hermes", "agent", "suno", "music", "eeg", "openbci", "bci", "midi", "ai-music", "felt-experience", "mcp"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Multimedia :: Sound/Audio",
"Topic :: Scientific/Engineering :: Human Machine Interfaces",
]
dependencies = [
"requests>=2.28",
"numpy>=1.24",
"scipy>=1.10",
]
[project.optional-dependencies]
midi = ["midiutil>=1.2"]
hardware = ["brainflow>=5.0"]
retry = ["tenacity>=8.0"]
mcp = ["mcp>=1.0", "pyyaml>=6.0"]
all = ["midiutil>=1.2", "brainflow>=5.0", "tenacity>=8.0", "mcp>=1.0", "pyyaml>=6.0"]
dev = [
"pytest>=7.0",
"pytest-cov",
"responses>=0.23",
"midiutil>=1.2",
"tenacity>=8.0",
"mcp>=1.0",
"pyyaml>=6.0",
]
[project.scripts]
hermes-sonus-mcp = "hermes_sonus.mcp.server:main"
[project.urls]
Homepage = "https://github.com/buckster123/hermes-sonus"
Repository = "https://github.com/buckster123/hermes-sonus"
Issues = "https://github.com/buckster123/hermes-sonus/issues"
[tool.setuptools.packages.find]
include = ["hermes_sonus*"]
[tool.pytest.ini_options]
testpaths = ["tests"]
addopts = "-q --tb=short"