Files
pre-commit-hook-ensure-sops/setup.py
YuviPanda 8631433027 Use json to read .json files
I hate that I can no longer say 'all json is valid YAML'
sigh
2023-01-04 11:43:15 -08:00

20 lines
597 B
Python

import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pre-commit-hook-ensure-sops",
version="1.0",
author="Yuvi Panda",
author_email="yuvipanda@gmail.com",
description="pre-commit hook to ensure that files that should be encrypted with sops are in fact encrypted",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/yuvipanda/pre-commit-hook-ensure-sops",
packages=setuptools.find_packages(),
install_requires=[
"ruamel.yaml",
],
)