-
Notifications
You must be signed in to change notification settings - Fork 12
/
setup.py
41 lines (36 loc) · 1.39 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
37
38
39
40
41
#!/usr/bin/env python
# Copyright The Cloud Custodian Authors.
# SPDX-License-Identifier: Apache-2.0
from setuptools import Extension, find_packages, setup
from pathlib import Path
README = (Path(__file__).parent / "README.md").read_text()
setup(
name="tfparse",
description="Python HCL/Terraform parser via extension for AquaSecurity defsec",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/cloud-custodian/tfparse",
author="Wayne Witzel III",
author_email="[email protected]",
maintainer="Cloud Custodian Project",
maintainer_email="[email protected]",
license="Apache-2.0",
version="0.6.12",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: Apache Software License",
],
packages=find_packages(),
install_requires=["cffi>=1.0.0"],
setup_requires=["cffi>=1.0.0", "setuptools-golang"],
build_golang={"root": "github.com/cloud-custodian/tfparse/gotfparse"},
ext_modules=[Extension("tfparse", ["gotfparse/cmd/tfparse/main.go"])],
cffi_modules=[
"tfparse/build_cffi.py:ffi",
],
)