forked from AgibotTech/genie_sim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
28 lines (25 loc) · 1.16 KB
/
Copy pathpyproject.toml
File metadata and controls
28 lines (25 loc) · 1.16 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
# Thin "locator" distribution for the legacy data_collection module.
#
# Purpose: make `import data_collection` / `find_spec("data_collection")` resolve
# to this directory so `geniesim_cli`'s `autocollect` verb can locate tasks/
# the same way `geniesim benchmark` locates `geniesim_benchmark` (find_spec).
#
# Scope is deliberately minimal — this is NOT a full packaging of the module:
# * Only the top-level `data_collection` package (this dir's __init__.py) is
# exposed; client/ server/ common/ remain cwd-relative script imports.
# * No dependencies are declared here (the real deps live in requirements.txt
# and are installed inside the Docker image).
#
# Reversible: `pip uninstall geniesim-data-collection` + delete this file and
# __init__.py restores filesystem-walk discovery (the CLI falls back to it).
[build-system]
requires = ["setuptools>=64"]
build-backend = "setuptools.build_meta"
[project]
name = "geniesim-data-collection"
version = "0.0.0"
description = "Locator shim so geniesim_cli can find_spec the data_collection module."
requires-python = ">=3.10,<3.13"
[tool.setuptools]
packages = ["data_collection"]
package-dir = { "data_collection" = "." }