-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
34 lines (31 loc) · 807 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
import glob
from setuptools import setup, find_packages
'''
with open('README.md') as f:
readme = f.read()
'''
'''
with open('LICENSE') as f:
license = f.read()
'''
setup(
name='ansible-dev-tools',
version='0.1.4',
license='Apache',
description='various tools for debuggers of ansible',
long_description='see https://github.com/jctanner/ansible-tools/blob/master/README.md',
author='James Tanner',
author_email='tanner.jc@gmail.com',
url='https://github.com/jctanner/ansible-tools',
packages=find_packages(),
scripts=[x for x in glob.glob('scripts/*') if not '__pycache__' in x],
python_requires='>=2.7',
install_requires=[
'beautifulsoup4',
'epdb',
'logzero',
'packaging',
'requests',
'sh'
]
)