typos/setup.py
2024-10-24 12:04:37 -05:00

14 lines
249 B
Python

from __future__ import annotations
from setuptools import setup
TYPOS_VERSION = '1.26.4'
setup(
name='pre_commit_placeholder_package',
version='0.0.0',
install_requires=[f'typos=={TYPOS_VERSION}'],
package_dir={'': 'crates'},
)