Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: nebula-orchestrator/nebula-python-sdk
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 4053f84391d0a2687610c8166a7e5095b9d3ebec
Choose a base ref
...
head repository: nebula-orchestrator/nebula-python-sdk
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 0.7
Choose a head ref
  • 3 commits
  • 4 files changed
  • 1 contributor

Commits on Jun 12, 2017

  1. adding setup.py

    naorlivne committed Jun 12, 2017
    Copy the full SHA
    31b71b3 View commit details
  2. uploaded to pypi

    naorlivne committed Jun 12, 2017
    Copy the full SHA
    f15f9f5 View commit details
  3. install guide

    naorlivne committed Jun 12, 2017
    Copy the full SHA
    d8628fc View commit details
Showing with 31 additions and 0 deletions.
  1. +3 −0 NebulaPythonSDK/__init__.py
  2. 0 { → NebulaPythonSDK}/sdk.py
  3. +3 −0 README.md
  4. +25 −0 setup.py
3 changes: 3 additions & 0 deletions NebulaPythonSDK/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
__author__ = 'Naor Livne'

from .sdk import Nebula
File renamed without changes.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -5,6 +5,9 @@ translates all of Nebula [API](http://nebula.readthedocs.io/en/latest/api/) call

# How To Use
```python
# install from PyPi
pip install NebulaPythonSDK

# Load API wrapper from library
from NebulaPythonSDK import Nebula

25 changes: 25 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
__author__ = 'Naor Livne'
__author_email__ = 'naorlivne@gmail.com'
__version__ = '0.7'

from setuptools import setup, find_packages

setup(name='NebulaPythonSDK',
author=__author__,
author_email=__author_email__,
version=__version__,
description="NebulaPythonSDK is a Pythonic SDK to manage Nebula container orchestrator,",
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
scripts=['setup.py'],
license="GPLv3",
keywords="nebula container orchestrator sdk",
url="https://github.com/nebula-orchestrator/nebula-python-sdk",
install_requires=['requests>=2.3.0'],
classifiers=["Development Status :: 4 - Beta",
"Environment :: Other Environment",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules"])