summaryrefslogtreecommitdiff
path: root/setup.py
Commit message (Collapse)AuthorAgeFilesLines
* Use HTTPS instead of legacy HTTP for ansible.com (#16870)Robin Schneider2017-02-151-1/+1
| | | | | | | | | Mechanical edit done by this "one-liner": ```Shell git ls-files -z "$(git rev-parse --show-toplevel)" | xargs --null -I '{}' find '{}' -type f -print0 | xargs --null sed --in-place --regexp-extended 's#http://(www\.|galaxy\.|)ansible\.com#https://\1ansible.com#g;' ``` Related to: https://github.com/ansible/ansible/issues/16869
* Move to using a requirements.txt to install the python packages. (#21430)Toshio Kuratomi2017-02-151-1/+8
| | | | | | | | Move to using a requirements.txt to install the python packages. This makes it easy to keep the documentation and actual package dependencies in sync. Fixes #18453
* Legacy pep8 updates for setup.py and testsMatt Martz2017-02-111-41/+49
|
* Move ssh and local connection plugins from using raw select to selectorsToshio Kuratomi2017-02-031-2/+2
| | | | | | | | | | | | | | | At the moment, this change will use EPoll on Linux, KQueue on *BSDs, etc, so it should alleviate problems with too many open file descriptors. * Bundle a copy of selectors2 so that we have the selectors API everywhere. * Add licensing information to selectors2 file so it's clear what the licensing terms and conditions are. * Exclude the bundled copy of selectors2 from our boilerplate code-smell test * Rewrite ssh_run tests to attempt to work around problem with mocking select on shippable Fixes #14143
* PEP 8 indent cleanup. (#20800)Matt Clay2017-01-291-9/+9
| | | | | | | | * PEP 8 E121 cleanup. * PEP 8 E126 cleanup. * PEP 8 E122 cleanup.
* Updating setup.py to remove extras specific pathsJames Cammarata2016-12-081-1/+1
|
* Add ansible-connection to scripts in setup.pyNathaniel Case2016-12-051-0/+1
|
* Removing the shebang and the execution permission so the command be prefixed ↵David Côté-Tremblay2016-11-071-2/+0
| | | | with python2 or python3 as needed
* Fix setup.py install.Toshio Kuratomi2016-11-031-1/+1
| | | | | | | | In setuptools prior to 21.2.1, package_data can't directly reference a directory. Modify the entry for galaxy data so that it includes the files but not the directories Fixes #18231
* Change <support@ansible.com> - it's being retired.Bill Nottingham2016-10-151-1/+1
|
* Fix ziploader for the cornercase of ansible invoking ansible.Toshio Kuratomi2016-04-291-1/+1
| | | | | | | | | | | | * Make ziploader's ansible and ansible.module_utils libraries into namespace packages. * Move __version__ and __author__ from ansible/__init__ to ansible/release.py. This is because namespace packages only load one __init__.py. If that is not the __init__.py with the author and version info then those won't be available. * In ziplaoder, move the version ito ANSIBLE_CONSTANTS. * Change PluginLoader to properly construct the path to the plugins even when namespace packages are present.
* renamed shell to console in last spotBrian Coca2016-03-091-1/+1
|
* draft 1st release of ansible-consoleBrian Coca2016-03-071-0/+1
| | | | | | | | | | porting @dominis 's ansible-shell tool from 1.9 and integrating it into ansible added verbosity control made more resilitent to several errors added highlight color, to configurable colors more resilient on exception and interruptions prompt coloring, goes red and changes to # when using become = true and root become setting is now explicit and not a toggle
* Bundle a new version of python-six for compatibility along with some code to ↵six-compatToshio Kuratomi2015-10-161-1/+3
| | | | make it easy for distributions to override the bunndled copy if they have a new enough version.
* now include galaxy/data/ stuff for use with ansible-galaxyBrian Coca2015-09-011-1/+1
|
* add distutils package classifiersbillwanjohi2015-07-271-0/+15
| | | | | | | I was particularly interested in the programming language ones, but the others might be useful to others browsing PyPI. Now with GPLv3+, and Utilities topic.
* Merge pull request #11731 from danasmera/develJames Cammarata2015-07-251-1/+0
|\ | | | | Delete unused import glob
| * Delete unused import globdanasmera2015-07-241-1/+0
| |
* | Fix removal of .git from modules directoriesJames Cammarata2015-07-131-1/+1
| | | | | | | | | | | | Also changed the setup.py maintainers email to our default support one. Fixes #11051
* | Testing additions and fixesMatt Martz2015-05-081-1/+1
|/ | | | | | * Fix import pathing for units.mock * Add some additional requirements * Use compileall to test compatiblity with different python versions
* Generic package_dir mapping in setup.py (closes #10437)Jürgen Hermann2015-03-121-1/+1
|
* Parenthesis mean we can get rid of line continuation markersToshio Kuratomi2015-01-261-2/+3
|
* Make setup.py work with Python 3 (and requiring 2.6)Gilles Pietri2015-01-261-2/+2
|
* Need to include extras in setup to accomodate future windows extras modulesMichael DeHaan2014-11-291-1/+1
|
* Make sure Windows modules are installed.Chris Church2014-11-281-1/+1
|
* Fix packaging to work with new module locationJames Laska2014-09-291-18/+2
| | | | | | Changes include: * Remove references to old module dir from .spec * Use setuptools find_packages find all ansible packages
* changes for package loading of modulesMichael DeHaan2014-09-261-15/+1
|
* WIP on the re-implementation of fact caching and various backends.Josh Drake2014-08-111-0/+1
|
* Include *.ps1 files in the library for installationJames Cammarata2014-08-071-0/+3
| | | | Fixes #8490
* Correct string concatenation errorJames Laska2014-07-171-1/+1
|
* Add shell_plugins to packages.Chris Church2014-06-201-0/+1
|
* Merge pull request #6994 from tonk/docfixMichael DeHaan2014-04-291-0/+1
|\ | | | | Fix documentation error
| * Fix documentation errorTon Kersten2014-04-151-0/+1
| |
* | Cleaning up the import testing around setuptoolsJames Cammarata2014-04-291-8/+3
| |
* | Prnt error message is unable to use setuptools when buildingToshio Kuratomi2014-04-021-1/+11
| |
* | distutils' requires parameter doesn't work with setuptools. UseToshio Kuratomi2014-03-141-1/+1
| | | | | | | | setuptools' instal_requires instead
* | Require a recent enough version of pycrypto and see that playbook and vault ↵Toshio Kuratomi2014-03-141-1/+1
|/ | | | ues it.
* Added ansible-vault to the installerTon Kersten2014-02-211-1/+2
|
* Tweak library installation path to default to /usr/share/ansible if specifiedJames Cammarata2014-02-171-1/+7
|
* Merge branch 'patch-1' of https://github.com/eggsby/ansible into eggsby-patch-1James Cammarata2014-02-171-1/+2
|\
| * bugfix: support path separators in module pathThomas Omans2014-01-141-1/+2
| | | | | | | | | | | | | | As described by http://docs.ansible.com/intro_configuration.html#library the library supports multiple paths to load modules from. Currently `setup.py` treats something like `/usr/share/ansible:/my/custom/modules` as a single directory name and results in the installed modules not being on the module path. (instead they are in a directory named `/usr/share/ansible:/my/custom/modules`) This commit simply takes the first listed directory as the install directory for the core modules.
* | AnsibleWorks -> AnsibleMichael DeHaan2014-01-281-2/+2
|/
* setup.py: fix ansible-galaxy was not installed when using make installRene Moser2013-12-201-1/+2
|
* Revert "Merge pull request #4874 from leth/editable_install"James Tanner2013-12-161-18/+6
| | | | | This reverts commit 15b89b45e1441d4d268b5cc3acca6127b4f38063, reversing changes made to 3d836a1ab72b9b07c9159678cf26ad1e2c8d1aee.
* Fix setup.py to work with 'pip install -e .'Marcus Cobden2013-11-111-6/+18
|
* Add module utils path to setup.pyMichael DeHaan2013-10-261-0/+1
|
* Fix the install destination, now with os.path.joinTon Kersten2013-09-231-1/+1
|
* Fix the install destinationTon Kersten2013-09-231-1/+1
|
* use DEFAULT_MODULE_PATH in setup.py so that there is a chance to override ↵Skylar Saveland2013-09-161-2/+2
| | | | with ANSIBLE_LIBRARY env variable
* Update URLs and email address in setup.pyMichael DeHaan2013-08-241-5/+3
|