root/alpine313/: pytokens-0.1.10 metadata and description
A Fast, spec compliant Python 3.12+ tokenizer that runs on older Pythons.
| author | Tushar Sadhwani |
| author_email | tushar.sadhwani000@gmail.com |
| classifiers |
|
| description_content_type | text/markdown |
| license | MIT |
| metadata_version | 2.2 |
| requires_dist |
|
| requires_python | >=3.8 |
| File | Tox results | History |
|---|---|---|
pytokens-0.1.10-py3-none-any.whl
|
|
pytokens
A Fast, spec compliant Python 3.12+ tokenizer that runs on older Pythons.
Installation
pip install pytokens
Usage
pytokens path/to/file.py
Local Development / Testing
- Create and activate a virtual environment
- Run
pip install -r requirements-dev.txtto do an editable install - Run
pytestto run tests
Type Checking
Run mypy .
Create and upload a package to PyPI
Make sure to bump the version in setup.cfg.
Then run the following commands:
rm -rf dist
python -m build
Then upload it to PyPI using twine:
twine upload dist/*