mirror of
https://github.com/tofuutils/pre-commit-opentofu.git
synced 2025-10-15 17:38:54 +02:00
33 lines
1,003 B
Python
33 lines
1,003 B
Python
from setuptools import find_packages
|
|
from setuptools import setup
|
|
|
|
|
|
setup(
|
|
name='pre-commit-opentofu',
|
|
description='Pre-commit hooks for tofu_docs_replace',
|
|
url='https://github.com/tofuutils/pre-commit-opentofu',
|
|
version_format='{tag}+{gitsha}',
|
|
|
|
author='Contributors',
|
|
|
|
classifiers=[
|
|
'License :: OSI Approved :: MIT License',
|
|
'Programming Language :: Python :: 2',
|
|
'Programming Language :: Python :: 2.7',
|
|
'Programming Language :: Python :: 3',
|
|
'Programming Language :: Python :: 3.6',
|
|
'Programming Language :: Python :: 3.7',
|
|
'Programming Language :: Python :: Implementation :: CPython',
|
|
'Programming Language :: Python :: Implementation :: PyPy',
|
|
],
|
|
|
|
packages=find_packages(exclude=('tests*', 'testing*')),
|
|
install_requires=[
|
|
'setuptools-git-version',
|
|
],
|
|
entry_points={
|
|
'console_scripts': [
|
|
'tofu_docs_replace = hooks.tofu_docs_replace:main',
|
|
],
|
|
},
|
|
)
|