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
6a5a81a3
Commit
6a5a81a3
authored
Sep 29, 2014
by
Michael DeHaan
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #9200 from jlaska/devel
Remove references to old module dir from .spec
parents
45972289
a0fecd61
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
20 deletions
+3
-20
MANIFEST.in
+1
-0
packaging/rpm/ansible.spec
+0
-2
setup.py
+2
-18
No files found.
MANIFEST.in
View file @
6a5a81a3
...
...
@@ -2,6 +2,7 @@ include README.md packaging/rpm/ansible.spec COPYING
include examples/hosts
include examples/ansible.cfg
include lib/ansible/module_utils/powershell.ps1
recursive-include lib/ansible/modules *
recursive-include docs *
include Makefile
include VERSION
...
...
packaging/rpm/ansible.spec
View file @
6a5a81a3
...
...
@@ -104,8 +104,6 @@ rm -rf %{buildroot}
%{python_sitelib}/ansible*
%{_bindir}/ansible*
%dir %{_datadir}/ansible
%dir %{_datadir}/ansible/*
%{_datadir}/ansible/*/*
%config(noreplace) %{_sysconfdir}/ansible
%doc README.md PKG-INFO COPYING
%doc %{_mandir}/man1/ansible*
...
...
setup.py
View file @
6a5a81a3
...
...
@@ -7,7 +7,7 @@ from glob import glob
sys
.
path
.
insert
(
0
,
os
.
path
.
abspath
(
'lib'
))
from
ansible
import
__version__
,
__author__
try
:
from
setuptools
import
setup
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)."
...
...
@@ -22,23 +22,7 @@ setup(name='ansible',
license
=
'GPLv3'
,
install_requires
=
[
'paramiko'
,
'jinja2'
,
"PyYAML"
,
'setuptools'
,
'pycrypto >= 2.6'
],
package_dir
=
{
'ansible'
:
'lib/ansible'
},
packages
=
[
'ansible'
,
'ansible.cache'
,
'ansible.utils'
,
'ansible.utils.module_docs_fragments'
,
'ansible.inventory'
,
'ansible.inventory.vars_plugins'
,
'ansible.playbook'
,
'ansible.runner'
,
'ansible.runner.action_plugins'
,
'ansible.runner.lookup_plugins'
,
'ansible.runner.connection_plugins'
,
'ansible.runner.shell_plugins'
,
'ansible.runner.filter_plugins'
,
'ansible.callback_plugins'
,
'ansible.module_utils'
],
packages
=
find_packages
(
'lib'
),
package_data
=
{
''
:
[
'module_utils/*.ps1'
],
},
...
...
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