Skip to content
This repository was archived by the owner on Jul 4, 2020. It is now read-only.

Commit dd9be7e

Browse files
committed
Merge remote-tracking branch 'origin/master'
2 parents f191350 + 2b2062d commit dd9be7e

File tree

3 files changed

+7
-9
lines changed

3 files changed

+7
-9
lines changed

.travis.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,21 @@
11
#OSIAM Connector for Python
22

3-
This project contains the OSIAM Connector for Python and some auxiliary modules that depend on the connector.
3+
This repository contains the OSIAM Connector for Python and some auxiliary modules that depend on the connector. For more information and documentation visit the [repo's Wiki](https://github.com/osiam/connector4python/wiki).
44

55
For more information on OSIAM have a look into the [OSIAM server repository's README.md](https://github.com/osiam/server/README.md) or visit OSIAM's homepage at [www.osiam.org](https://www.osiam.org).
66

77
#Project structure
88

99
This project gets build with maven, the module structure is
1010

11-
* python -- is the main project, the request based OSIAM connector for Python itself.
12-
* example-client -- an example web application (Python 2.7, flask) using the API of the connector.
13-
* performance-tests -- our framework for running stresstests agains OSIAM, it also makes use of the connector.
11+
* python -- is the main project, the request based OSIAM connector for Python itself -> [Wiki](https://github.com/osiam/connector4python/wiki#osiam-connector-for-python)
12+
* example-client -- an example web application (Python 2.7, flask) using the API of the connector -> [Wiki](https://github.com/osiam/connector4python/wiki#sample-client-for-osiam)
13+
* performance-tests -- our framework for running stresstests agains OSIAM, it also makes use of the connector -> [Wiki](https://github.com/osiam/connector4python/wiki#performance-test-framework-and-tests-for-osiam)
1414

1515
# Requirements
1616

1717
* Python 2.7
1818
* An up and running OSIAM instance
19-
* ...
2019

2120
# Issue tracker for the connector
2221

python/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44
from distutils.core import setup, find_packages
55

66
config = {
7-
'description': 'OSIAM NG Connector -- enables easy access to OSIAM NG backend',
7+
'description': 'OSIAM Connector for Python -- enables easy access to OSIAM services',
88
'author': 'Philipp Eder',
9-
'url': 'http://github.com/osiam-dev/osiam',
9+
'url': 'http://github.com/osiam/connector4python',
1010
'author_email': 'p.eder@tarent.de',
1111
'version': '0.1',
1212
'install_requires': ['nose', 'requests', 'flask', 'mock'],
1313
# 'packages': ['osiam'],
1414
'packages':find_packages(exclude=['performance']),
1515
'scripts': [],
16-
'name': 'OSIAM NG Example Client'
16+
'name': 'OSIAM Sample Client'
1717
}
1818

1919
setup(**config)

0 commit comments

Comments
 (0)