-
Notifications
You must be signed in to change notification settings - Fork 2
/
setup.py
27 lines (26 loc) · 1.21 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
from setuptools import setup, find_packages
setup(
name="sphinx-rego",
version="0.2.2",
packages=find_packages(),
install_requires=[
"docutils"
],
url="https://github.com/zenitysec/sphinx-rego",
license="MIT",
author="Zenity",
author_email="join@zenity.io",
description="A sphinx extension that automatically documents Open Policy Agent Rego policies using the rego_metadoc property. Maintained by Zenity, learn more at https://zenity.io.",
long_description="""A sphinx extension that automatically documents Open Policy Agent Rego policies using the rego_metadoc property.\nFor installation and usage details, see https://github.com/zenitysec/sphinx-rego.\nMaintained by Zenity, learn more at https://zenity.io.""",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Documentation :: Sphinx",
"Topic :: Software Development :: Documentation"
],
)