forked from cloud-custodian/cloud-custodian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
38 lines (34 loc) · 1002 Bytes
/
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
import os
from io import open
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname), encoding='utf-8').read()
setup(
name="c7n",
version='0.8.44.2',
description="Cloud Custodian - Policy Rules Engine",
long_description=read('README.md'),
long_description_content_type='text/markdown',
classifiers=[
"Topic :: System :: Systems Administration",
"Topic :: System :: Distributed Computing"
],
url="https://github.com/cloud-custodian/cloud-custodian",
license="Apache-2.0",
packages=find_packages(),
entry_points={
'console_scripts': [
'custodian = c7n.cli:main']},
install_requires=[
"boto3>=1.9.94",
"botocore>=1.12.94",
"python-dateutil>=2.6,<3.0.0",
"PyYAML>=4.2b4",
"jsonschema",
"jsonpatch>=1.21",
"argcomplete",
"tabulate>=0.8.2",
"urllib3",
"certifi"
],
)