forked from salesforce/policy_sentry
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
41 lines (38 loc) · 1.06 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="policy_sentry",
include_package_data=True,
version="0.4.3",
author="Kinnaird McQuade",
author_email="[email protected]",
description="Generate locked-down AWS IAM Policies",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/salesforce/policy_sentry",
packages=setuptools.find_packages(),
install_requires=[
'click',
'sqlalchemy',
'pandas',
'policyuniverse',
'PyYAML',
'bs4',
'html5lib',
'lxml',
'jinja2',
'schema'
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
# entry_points='''
# [console_scripts]
# policy_sentry=policy_sentry.bin:policy_sentry
# ''',
python_requires='>=3.6',
scripts=['policy_sentry/bin/policy_sentry'],
)