| [build-system] |
| requires = ["setuptools>=77", "wheel"] |
| build-backend = "setuptools.build_meta" |
|
|
| [project] |
| name = "barunaction-35m" |
| version = "1.0.0" |
| description = "Verified local inference, training, and benchmark tooling for BarunAction-35M" |
| readme = "README.md" |
| requires-python = ">=3.10" |
| license = "Apache-2.0" |
| authors = [{name = "Harrrshall", email = "harshalsingh1223@gmail.com"}] |
| keywords = ["action-compiler", "language-model", "pytorch", "small-language-model"] |
| classifiers = [ |
| "Development Status :: 4 - Beta", |
| "Programming Language :: Python :: 3", |
| "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| ] |
| dependencies = [ |
| "huggingface-hub>=0.26", |
| "numpy>=1.26", |
| "safetensors>=0.4.5", |
| "tokenizers>=0.20,<1", |
| "torch>=2.4", |
| ] |
|
|
| [project.scripts] |
| barunaction = "barunaction.cli:main" |
|
|
| [project.optional-dependencies] |
| dev = ["pytest>=8", "ruff>=0.6"] |
|
|
| [project.urls] |
| Homepage = "https://github.com/harrrshall/barunaction-35m" |
| Source = "https://github.com/harrrshall/barunaction-35m" |
| BaseModel = "https://huggingface.co/harrrshall/BarunLM-35M" |
| Model = "https://huggingface.co/harrrshall/BarunAction-35M" |
| Demo = "https://huggingface.co/spaces/harrrshall/BarunAction-35M" |
| ModelCard = "https://github.com/harrrshall/barunaction-35m/blob/v1.0.0/docs/barunaction-model-card.md" |
| Retrieval = "https://github.com/harrrshall/barunaction-35m/blob/v1.0.0/docs/barunaction-retrieval.md" |
| Evidence = "https://github.com/harrrshall/barunaction-35m/blob/v1.0.0/docs/barunaction-release-evidence.md" |
|
|
| [tool.setuptools.packages.find] |
| where = ["src"] |
|
|
| [tool.ruff] |
| line-length = 100 |
| target-version = "py310" |
|
|
| [tool.pytest.ini_options] |
| testpaths = ["tests"] |
|
|