Skip to content
This repository has been archived by the owner on Mar 13, 2024. It is now read-only.

Commit

Permalink
Merge branch 'refactor'
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Call committed Sep 14, 2017
2 parents 6d86bdc + b2e7fc3 commit 027300d
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 13 deletions.
15 changes: 14 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,22 @@
## ultipro-soap-python

This library currently supports pulling data from UltiPro.
A Python 3 library and command line tool for the UltiPro Soap API.
At present, all functions are read-only against UltiPro.

### Setup:

This package is not currently hosted in PyPI; please install with pip3 via GitHub.

Ensure you have the latest version of Python 3:
```
brew install python3
pip3 install git+git@github.com:call/ultipro-soap-python.git@master
```

#### Installation:

This package is not yet hosted on PyPI. You can install in GitHUb

#### Web Service User and Credentials:

1. Ensure you have credentials for the UltiPro API endpoints you need to access.
Expand Down
12 changes: 6 additions & 6 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
backoff>=1.4.3
click>=6.7
configparser>=3.5.0
pandas>=0.20.3
pandas_gbq>=0.2.0
zeep>=2.0.0
backoff==1.4.3
click==6.7
configparser==3.5.0
pandas==0.20.3
pandas_gbq==0.2.0
zeep==2.0.0
12 changes: 6 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,12 +13,12 @@
packages=['ultipro', 'ultipro.services'],
license='Apache License 2.0',
install_requires=[
'backoff>=1.4.3',
'click>=6.7',
'configparser>=3.5.0',
'pandas>=0.20.3',
'pandas_gbq>=0.2.0',
'zeep>=2.0.0'
'backoff==1.4.3',
'click==6.7',
'configparser==3.5.0',
'pandas==0.20.3',
'pandas_gbq==0.2.0',
'zeep==2.0.0'
],
keywords=['UltiPro', 'SOAP API', 'Wrapper', 'Client'],
description='Python Client for the UltiPro SOAP API',
Expand Down

0 comments on commit 027300d

Please sign in to comment.