mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
Add requirements in setup.py.
This commit is contained in:
parent
86878be288
commit
f7469f8704
1 changed files with 2 additions and 2 deletions
4
setup.py
4
setup.py
|
@ -4,7 +4,6 @@
|
|||
# for you, you should go through "make install" or "make RPMs"
|
||||
# for that, or manually copy modules over.
|
||||
|
||||
import glob
|
||||
import os
|
||||
import sys
|
||||
|
||||
|
@ -19,7 +18,8 @@ setup(name='ansible',
|
|||
author_email='michael.dehaan@gmail.com',
|
||||
url='http://ansible.github.com/',
|
||||
license='GPLv3',
|
||||
package_dir = { 'ansible' : 'lib/ansible' },
|
||||
install_requires=['paramiko', 'jinja2', "PyYAML"],
|
||||
package_dir={ 'ansible': 'lib/ansible' },
|
||||
packages=[
|
||||
'ansible',
|
||||
],
|
||||
|
|
Loading…
Reference in a new issue