Skip to content

Commit 5d7d751

Browse files
authored
Merge pull request #8 from rubixFunctions/update-pypi
Update pypi
2 parents 515f7d2 + f461e1b commit 5d7d751

File tree

5 files changed

+7
-66
lines changed

5 files changed

+7
-66
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
r3x.pyc
22
build
33
dist
4-
r3x_python_sdk.egg-info
4+
r3x_python_sdk.egg-info
5+
r3x.egg-info

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
## Usage
66
Install Package from PyPi
77
```
8-
$ python -m pip install --index-url https://test.pypi.org/project/r3x-python-sdk/ --no-deps r3x-python-sdk
8+
$ python -m pip install -i https://test.pypi.org/simple/ r3x --user
99
```
1010
With the package installed, import `r3x`. Once imported define a function which returns a `JSON` response. Your function will receive the request body as a json parameter. Finally pass your function to `r3x.execute(your_func)`. The following is an example of using the SDK
1111
```

r3x.py

Lines changed: 0 additions & 62 deletions
This file was deleted.

r3x/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
from r3x import execute

setup.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@
66

77
# This call to setup() does all the work
88
setuptools.setup(
9-
name="r3x-python-sdk",
10-
version="0.0.2",
9+
name="r3x",
10+
version="0.0.4",
1111
description="RubiX Python SDK",
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",
@@ -18,6 +18,7 @@
1818
classifiers=[
1919
"License :: OSI Approved :: Apache Software License",
2020
"Programming Language :: Python :: 2",
21+
"Programming Language :: Python :: 3",
2122
],
2223
packages=["r3x"],
2324
include_package_data=True,

0 commit comments

Comments
 (0)