rogermt commited on
Commit
387183f
·
verified ·
1 Parent(s): f263ae6

Fix pyproject.toml: tell hatchling where the package is (itt_solver/)

Browse files
Files changed (1) hide show
  1. pyproject.toml +5 -6
pyproject.toml CHANGED
@@ -29,15 +29,14 @@ all = [
29
  "huggingface-hub>=0.20",
30
  ]
31
 
32
- [project.scripts]
33
- pemf-solve = "scripts.entrypoint:main"
34
- pemf-eval = "scripts.run_all_arc:run_all"
35
-
36
  [build-system]
37
  requires = ["hatchling"]
38
  build-backend = "hatchling.build"
39
 
40
- [tool.uv]
41
- dev-dependencies = [
 
 
 
42
  "pytest>=7.0",
43
  ]
 
29
  "huggingface-hub>=0.20",
30
  ]
31
 
 
 
 
 
32
  [build-system]
33
  requires = ["hatchling"]
34
  build-backend = "hatchling.build"
35
 
36
+ [tool.hatch.build.targets.wheel]
37
+ packages = ["itt_solver"]
38
+
39
+ [dependency-groups]
40
+ dev = [
41
  "pytest>=7.0",
42
  ]