-
Notifications
You must be signed in to change notification settings - Fork 50
/
setup.py
36 lines (35 loc) · 1.29 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
from setuptools import find_packages
from setuptools import setup
setup(
name="pre-commit-hooks",
description="Some out-of-the-box hooks for pre-commit",
url="https://github.com/Lucas-C/pre-commit-hooks",
version="1.5.5",
author="Lucas Cimon",
author_email="lucas.cimon@gmail.com",
platforms="linux",
classifiers=[
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
packages=find_packages("."),
install_requires=[
"rapidfuzz",
],
entry_points={
"console_scripts": [
"pre_commit_chmod = pre_commit_hooks.chmod:main",
"forbid_crlf = pre_commit_hooks.forbid_crlf:main",
"forbid_tabs = pre_commit_hooks.forbid_tabs:main",
"insert_license = pre_commit_hooks.insert_license:main",
"remove_crlf = pre_commit_hooks.remove_crlf:main",
"remove_tabs = pre_commit_hooks.remove_tabs:main",
],
},
)