Metadata-Version: 2.4
Name: num_b10
Version: 1.0.0
Summary: B10 (Base-4096) number system for space saving
Author-email: support.base.4096@gmail.com
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# B10 Numerical System (Base-4096)

B10 is a high-density numerical encoding system that uses a custom 4096-character alphabet. 
It is designed to minimize data weight in text-based protocols.

## Key Features:
- **High Density**: Encodes 12 bits of data into a single UTF-8 character.
- **Float Support**: Handles decimal numbers with high precision.
- **Cross-Platform**: Fully compatible with the B10 JavaScript ecosystem.

## Usage:
```python
from num_b10 import num_b10

# Encoding
encoded = num_b10.encode(1024) # Result: single character
# Decoding
decoded = num_b10.decode(encoded) # Result: "1024"
``

Support: support.base.4096@gmail.com

---

### 2. Файл pyproject.toml
Здесь я указал твою почту и убрал личные имена.

```toml
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[project]
name = "num_b10"
version = "1.0.0"
description = "High-density Base-4096 numerical encoding system"
readme = "README.md"
authors = [
  { email="support.base.4096@gmail.com" },
]
requires-python = ">=3.7"
classifiers = [
    "Programming Language :: Python :: 3",
    "License :: OSI Approved :: MIT License",
    "Operating System :: OS Independent",
]

[tool.setuptools.packages.find]
where = ["src"]
