-
Notifications
You must be signed in to change notification settings - Fork 60
/
setup.py
37 lines (32 loc) · 1.07 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
#!/usr/bin/env python
import os
from setuptools import setup
ROOT = os.path.realpath(os.path.join(os.path.dirname(__file__)))
tests_require = ["pytest", "coveralls", "bandit"]
dev_require = ["pre-commit", "black"]
setup(
name="policyuniverse",
version="1.5.1.20231109",
description="Parse and Process AWS IAM Policies, Statements, ARNs, and wildcards.",
long_description=open(os.path.join(ROOT, "README.md")).read(),
long_description_content_type="text/markdown",
author="Patrick Kelley",
author_email="[email protected]",
url="https://github.com/Netflix-Skunkworks/policyuniverse",
keywords=[
"iam",
"arn",
"action_groups",
"condition",
"policy",
"statement",
"wildcard",
],
packages=["policyuniverse"],
package_data={"policyuniverse": ["data.json"]},
python_requires=">=3.7",
include_package_data=True,
zip_safe=False,
classifiers=["License :: OSI Approved :: Apache Software License"],
extras_require={"tests": tests_require, "dev": dev_require},
)