| [build-system] |
| requires = ["setuptools>=61.0"] |
| build-backend = "setuptools.build_meta" |
|
|
| [project] |
| name = "occ-stack" |
| version = "0.1.0" |
| description = "Oracle-Credit-Compute: A Minimal Stack for Agentic Compute Allocation" |
| readme = "README.md" |
| requires-python = ">=3.9" |
| license = {text = "MIT"} |
| authors = [ |
| {name = "narcolepticchicken"} |
| ] |
| keywords = ["agent", "compute-allocation", "reinforcement-learning", "GRPO", "credit-system"] |
| classifiers = [ |
| "Development Status :: 3 - Alpha", |
| "Intended Audience :: Science/Research", |
| "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| "Programming Language :: Python :: 3", |
| ] |
| dependencies = [ |
| "torch>=2.0", |
| "transformers>=4.35", |
| "datasets>=2.14", |
| "numpy>=1.24", |
| "scikit-learn>=1.3", |
| ] |
|
|
| [project.optional-dependencies] |
| eval = ["evalplus>=0.1"] |
| train = ["trl>=0.9", "accelerate>=0.25"] |
|
|
| [project.urls] |
| Homepage = "https://huggingface.co/narcolepticchicken/occ-stack" |
| Documentation = "https://huggingface.co/narcolepticchicken/occ-stack/blob/main/README.md" |
|
|