typos/setup.py

15 lines
250 B
Python
Raw Normal View History

from __future__ import annotations
from setuptools import setup
TYPOS_VERSION = "1.13.20"
setup(
name='pre_commit_placeholder_package',
version='0.0.0',
install_requires=[f'typos=={TYPOS_VERSION}'],
2023-03-13 15:24:09 +00:00
package_dir={'': 'crates'},
)