You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airavata.apache.org by sm...@apache.org on 2019/09/09 19:17:37 UTC

[airavata-custos] branch master updated (742535b -> 841c5cd)

This is an automated email from the ASF dual-hosted git repository.

smarru pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/airavata-custos.git.


    from 742535b  Merge pull request #3 from DImuthuUpe/master
     add e56d294  initial python custos library
     new 841c5cd  Merge pull request #7 from apache/python-lib

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .gitignore                                    |  1 +
 clients/python/.gitignore                     |  4 +++
 LICENSE => clients/python/LICENSE             |  0
 clients/python/README.md                      |  1 +
 clients/python/airavata_custos/__init__.py    | 20 ++++++++++++++
 clients/python/airavata_custos/well_knowns.py | 30 +++++++++++++++++++++
 clients/python/requirements_dev.txt           | 13 +++++++++
 clients/python/setup.cfg                      | 26 ++++++++++++++++++
 clients/python/setup.py                       | 26 ++++++++++++++++++
 clients/python/tests/__init__.py              |  0
 clients/python/tests/test_well_knowns.py      | 38 +++++++++++++++++++++++++++
 clients/python/tox.ini                        | 22 ++++++++++++++++
 12 files changed, 181 insertions(+)
 create mode 100644 clients/python/.gitignore
 copy LICENSE => clients/python/LICENSE (100%)
 create mode 100644 clients/python/README.md
 create mode 100644 clients/python/airavata_custos/__init__.py
 create mode 100644 clients/python/airavata_custos/well_knowns.py
 create mode 100644 clients/python/requirements_dev.txt
 create mode 100644 clients/python/setup.cfg
 create mode 100644 clients/python/setup.py
 create mode 100644 clients/python/tests/__init__.py
 create mode 100644 clients/python/tests/test_well_knowns.py
 create mode 100644 clients/python/tox.ini


[airavata-custos] 01/01: Merge pull request #7 from apache/python-lib

Posted by sm...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

smarru pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/airavata-custos.git

commit 841c5cd35b592dfe8c34bdab8e391b102cb16034
Merge: 742535b e56d294
Author: Suresh Marru <sm...@apache.org>
AuthorDate: Mon Sep 9 15:17:33 2019 -0400

    Merge pull request #7 from apache/python-lib
    
    Merging the PR for aarushi to build on this library

 .gitignore                                    |   1 +
 clients/python/.gitignore                     |   4 +
 clients/python/LICENSE                        | 201 ++++++++++++++++++++++++++
 clients/python/README.md                      |   1 +
 clients/python/airavata_custos/__init__.py    |  20 +++
 clients/python/airavata_custos/well_knowns.py |  30 ++++
 clients/python/requirements_dev.txt           |  13 ++
 clients/python/setup.cfg                      |  26 ++++
 clients/python/setup.py                       |  26 ++++
 clients/python/tests/__init__.py              |   0
 clients/python/tests/test_well_knowns.py      |  38 +++++
 clients/python/tox.ini                        |  22 +++
 12 files changed, 382 insertions(+)