Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
b407dd8b
Commit
b407dd8b
authored
Apr 13, 2015
by
Dorian Pula
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add setup.py for v2 to allow for pip editable installs.
parent
557cd15c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
0 deletions
+36
-0
v2/setup.py
+36
-0
No files found.
v2/setup.py
0 → 100644
View file @
b407dd8b
#!/usr/bin/env python
import
sys
from
ansible
import
__version__
try
:
from
setuptools
import
setup
,
find_packages
except
ImportError
:
print
(
"Ansible now needs setuptools in order to build. Install it using"
" your package manager (usually python-setuptools) or via pip (pip"
" install setuptools)."
)
sys
.
exit
(
1
)
setup
(
name
=
'ansible'
,
version
=
__version__
,
description
=
'Radically simple IT automation'
,
author
=
'Michael DeHaan'
,
author_email
=
'michael@ansible.com'
,
url
=
'http://ansible.com/'
,
license
=
'GPLv3'
,
install_requires
=
[
'paramiko'
,
'jinja2'
,
"PyYAML"
,
'setuptools'
,
'pycrypto >= 2.6'
],
# package_dir={ '': 'lib' },
# packages=find_packages('lib'),
package_data
=
{
''
:
[
'module_utils/*.ps1'
,
'modules/core/windows/*.ps1'
,
'modules/extras/windows/*.ps1'
],
},
scripts
=
[
'bin/ansible'
,
'bin/ansible-playbook'
,
# 'bin/ansible-pull',
# 'bin/ansible-doc',
# 'bin/ansible-galaxy',
# 'bin/ansible-vault',
],
data_files
=
[],
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment