Metadata-Version: 2.4
Name: chronostrace-python
Version: 0.1.0
Summary: Add your description here
Requires-Python: >=3.14
Description-Content-Type: text/markdown
Requires-Dist: rich>=14.3.2

\# ChronosTrace 🚀



ChronosTrace is a tiny, beautiful "time-travel" debugger for Python. 

Just add a decorator to any function to see a line-by-line breakdown of variable changes and execution time.



\## Installation

```bash

pip install chronostrace

Usage

Python



from chronostrace import chronos



@chronos

def my\_function(n):

&nbsp;   total = 0

&nbsp;   for i in range(n):

&nbsp;       total += i

&nbsp;   return total



my\_function(3)

text





---



\### Step 3: Configure `pyproject.toml`

This is the most important part for PyPI. Open your `pyproject.toml` and update the `\[project]` section. It should look something like this:



```toml

\[project]

name = "chronostrace-pro"  # Or something unique to you

version = "0.1.0"

description = "A time-traveling state logger for Python functions"

authors = \[

&nbsp;   { name = "Your Name", email = "your@email.com" }

]

dependencies = \[

&nbsp;   "rich>=13.0.0",

]

readme = "README.md"

requires-python = ">=3.8"



\[build-system]

requires = \["setuptools>=61.0"]

build-backend = "setuptools.build\_meta"



\[tool.setuptools.packages.find]

where = \["src"]



