Skip to content

Commit 47451ed

Browse files
committed
Preparing for publishing to pypi
1 parent d20aeef commit 47451ed

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ This project contains a python client for interacting with the SolarWinds Orion
55
## Install
66

77
```
8-
pip install orionsdk-python
8+
pip install orionsdk
99
```
1010

1111
## Usage
1212

1313
```
1414
import orionsdk
1515
16-
swis = swisclient.SwisClient("server", "username", "password")
16+
swis = orionsdk.SwisClient("server", "username", "password")
1717
1818
aliases = swis.invoke('Metadata.Entity', 'GetAliases', 'SELECT B.Caption FROM Orion.Nodes B')
1919

orionsdk/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
from .swisclient import SwisClient
1616

1717

18-
__version__ = "0.0.1"
18+
__version__ = "0.0.2"

setup.cfg

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,7 @@
22
# This flag says that the code is written to work on both Python 2 and Python
33
# 3. If at all possible, it is good practice to do this. If you cannot, you
44
# will need to generate wheels for each Python version that you support.
5-
universal=1
5+
universal=1
6+
7+
[metadata]
8+
description-file = README.md

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
setup(
1212
name = "orionsdk",
13-
version = "0.0.1", # Update also in __init__ ;
13+
version = "0.0.2", # Update also in __init__ ;
1414
description = "Python API for the SolarWinds Orion SDK",
1515
long_description="Python client for interacting with the SolarWinds Orion API",
1616
author = "SolarWinds",

0 commit comments

Comments
 (0)