File size: 1,318 Bytes
36c78b1 |
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 29 30 31 32 33 |
[build-system]
requires = ["setuptools>=67", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bit-transformer-lm"
version = "1.0.0-rc1"
description = "Production-grade bit-native transformer with built-in safety telemetry and enterprise features"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "All Rights Reserved"}
authors = [{name = "WCNegentropy", email = "[email protected]"}]
keywords = ["transformer", "language-model", "safety", "telemetry", "distributed-training", "quantization"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[project.urls]
Homepage = "https://github.com/WCNegentropy/BitTransformerLM"
Documentation = "https://github.com/WCNegentropy/BitTransformerLM/blob/main/README.md"
Repository = "https://github.com/WCNegentropy/BitTransformerLM"
Issues = "https://github.com/WCNegentropy/BitTransformerLM/issues"
[tool.setuptools.packages.find]
include = ["bit_transformer"]
|