Skip to content

Commit 8a5f494

Browse files
committed
updates install instructions and correct grammatical mistake
1 parent b9f8e39 commit 8a5f494

File tree

2 files changed

+22
-6
lines changed

2 files changed

+22
-6
lines changed

README.md

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
1-
# Microsoft Graph
2-
`msgraph` is a Python wrapper of the [Microsoft Graph](https://developer.microsoft.com/en-us/graph) API.
1+
# Python-MSGraph
2+
`python-msgraph` is a Python wrapper of the [Microsoft Graph](https://developer.microsoft.com/en-us/graph) API.
33

44

55
## Installation
6-
To install the `msgraph` library use the following command:
6+
To install the `python-msgraph` library use the following command:
77
```bash
8-
python -m pip install git+ssh://[email protected]:WMInfoTech/python-msgraph.git
8+
python -m pip install python-msgraph
9+
```
10+
or, to build locally and install:
11+
```bash
12+
git clone [email protected]:WMInfoTech/python-msgraph.git && cd python-msgraph
13+
python setup.py install
914
```
1015

1116
## Usage
1217

1318
### Authentication
14-
The library currently support connecting to the API using an SSL certificate:
19+
The library currently supports connecting to the API using an SSL certificate:
1520
```python
1621
from msgraph import api
1722

setup.py

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
from setuptools import setup
22
import msgraph
33

4+
description = 'Python wrapper to the Microsoft Graph API'
5+
with open('README.md', 'r') as input_file:
6+
long_description = input_file.read()
7+
48
setup(
59
name='python-msgraph',
610
version=msgraph.__version__,
11+
long_description_content_type='text/markdown',
12+
long_description=long_description,
713
description='Python wrapper to the Microsoft Graph API',
814
author='Doug Fenstermacher',
915
author_email='[email protected]',
@@ -15,5 +21,10 @@
1521
'Source': 'https://github.com/WMInfoTech/python-msgraph',
1622
'Tracker': 'https://github.com/WMInfoTech/python-msgraph/issues'
1723
},
18-
install_requires=['adal>=1.2.2', 'requests>=2.12.0']
24+
install_requires=['adal>=1.2.2', 'requests>=2.12.0'],
25+
options={
26+
'bdist_wheel': {
27+
'universal': True
28+
}
29+
}
1930
)

0 commit comments

Comments
 (0)