mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-22 00:51:11 -05:00
13dbffcf7c
Fixes #682
13 lines
218 B
Python
13 lines
218 B
Python
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}'],
|
|
)
|