Skip to content

Commit

Permalink
tests integration
Browse files Browse the repository at this point in the history
  • Loading branch information
Jorge Gomes committed May 23, 2016
1 parent c8a35f9 commit 3e15b38
Show file tree
Hide file tree
Showing 9 changed files with 1,033 additions and 491 deletions.
3 changes: 3 additions & 0 deletions MANIFEST
@@ -0,0 +1,3 @@
# file GENERATED by distutils, do NOT edit
setup.py
udocker.py
2 changes: 1 addition & 1 deletion pylintrc
Expand Up @@ -70,7 +70,7 @@ confidence=
# --enable=similarities". If you want to run only the classes checker, but have
# no Warning level messages displayed, use"--disable=all --enable=classes
# --disable=W"
disable=E1608,W1627,E1601,E1603,E1602,E1605,E1604,E1607,E1606,W1621,W1620,W1623,W1622,W1625,W1624,W1609,W1608,W1607,W1606,W1605,W1604,W1603,W1602,W1601,W1639,W1640,I0021,W1638,I0020,W1618,W1619,W1630,W1626,W1637,W1634,W1635,W1610,W1611,W1612,W1613,W1614,W1615,W1616,W1617,W1632,W1633,W0704,W1628,W1629,W1636,W0141,W0122,W0123,locally-disabled,C0302,no-self-use,W0142
disable=E1608,W1627,E1601,E1603,E1602,E1605,E1604,E1607,E1606,W1621,W1620,W1623,W1622,W1625,W1624,W1609,W1608,W1607,W1606,W1605,W1604,W1603,W1602,W1601,W1639,W1640,I0021,W1638,I0020,W1618,W1619,W1630,W1626,W1637,W1634,W1635,W1610,W1611,W1612,W1613,W1614,W1615,W1616,W1617,W1632,W1633,W0704,W1628,W1629,W1636,W0141,W0122,W0123,locally-disabled,C0302,W0142,too-few-public-methods,no-self-use


[REPORTS]
Expand Down
33 changes: 33 additions & 0 deletions setup.py
@@ -0,0 +1,33 @@
#!/usr/bin/env python
"""
=============
udocker setup
=============
Wrapper to execute basic docker containers without using docker.
This tool is a last resort for the execution of docker containers
where docker is unavailable. It only provides a limited set of
functionalities.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""

from distutils.core import setup

setup(name="udocker",
version="1.0",
description="basic docker user space containers",
author="LIP",
author_email="udocker@lip.pt",
url="https://github.com/indigo-dc/udocker",
scripts=["udocker.py", ],
platform="linux2")

0 comments on commit 3e15b38

Please sign in to comment.