-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
28 lines (23 loc) · 819 Bytes
/
Copy pathsetup.py
File metadata and controls
28 lines (23 loc) · 819 Bytes
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
#!/usr/bin/env python
import os
from setuptools import setup, find_packages
def readme():
_ROOT = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(_ROOT, 'README.md')) as f:
return f.read()
setup(name='cfnbandage',
version='0.1',
description="CloudFormation Bandage",
author="Chloe Lee (DCS-RD)",
author_email="dcsrd@dl.trendmicro.com",
url="https://github.com/msfuko/cfnbandage",
packages=find_packages(exclude=("tests", "tests.*", "bin", "bin.*")),
package_dir={'cfnbandage': 'cfnbandage'},
long_description=readme(),
install_requires=['boto>=2.27.0',
'nose>=1.3.3',
'paramiko',
'geventconnpool'],
test_suite='tests',
tests_require='nose'
)