forked from cloud-custodian/cloud-custodian
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
33 lines (28 loc) · 780 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
import os
from setuptools import setup, find_packages
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name="c7n",
version='0.8.23.2',
description="Cloud Custodian - Policy Rules Engine",
long_description=read('README.rst'),
classifiers=[
"Topic :: System :: Systems Administration",
"Topic :: System :: Distributed Computing"
],
url="https://github.com/capitalone/cloud-custodian",
license="Apache-2.0",
packages=find_packages(),
entry_points={
'console_scripts': [
'custodian = c7n.cli:main']},
install_requires=[
"boto3>=1.4.4",
"pyyaml",
"jsonschema",
"ipaddress",
"argcomplete",
"tabulate",
],
)