evo-anything 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "evo-anything",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Git-based evolutionary algorithm design engine. Evolves code via LLM-driven mutation, crossover, and reflection on any git repository.",
5
5
  "keywords": [
6
6
  "ai",
@@ -11,6 +11,9 @@ dependencies = [
11
11
  [project.scripts]
12
12
  evo-engine = "server:main"
13
13
 
14
+ [tool.setuptools]
15
+ py-modules = ["server", "models", "selection"]
16
+
14
17
  [build-system]
15
- requires = ["hatchling"]
16
- build-backend = "hatchling.build"
18
+ requires = ["setuptools>=61"]
19
+ build-backend = "setuptools.build_meta"
@@ -35,7 +35,7 @@ from selection import (
35
35
  update_temperatures,
36
36
  )
37
37
 
38
- mcp = FastMCP("evo-engine", description="U2E evolutionary algorithm bookkeeping")
38
+ mcp = FastMCP("evo-engine", instructions="U2E evolutionary algorithm bookkeeping")
39
39
 
40
40
  # ---------------------------------------------------------------------------
41
41
  # State persistence