Skip to content

Commit 5386992

Browse files
committed
Rename setup.py name for PyPi. Update README.md
1 parent 4620a1e commit 5386992

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Microsoft graph API wrapper for Microsoft Graph written in Python.
33

44
## Installing
55
```
6-
git+git://github.com/GearPlug/microsoftgraph-python
6+
pip install microsoftgraph-python
77
```
88

99
## Usage

setup.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,15 @@
1+
import os
12
from setuptools import setup
23

3-
setup(name='microsoftgraph',
4+
5+
def read(fname):
6+
return open(os.path.join(os.path.dirname(__file__), fname)).read()
7+
8+
9+
setup(name='microsoftgraph-python',
410
version='0.1',
511
description='API wrapper for Microsoft Graph written in Python',
12+
long_description=read('README.md'),
613
url='https://github.com/GearPlug/microsoftgraph-python',
714
author='Miguel Ferrer, Nerio Rincon, Yordy Gelvez',
815
author_email='ingferrermiguel@gmail.com',

0 commit comments

Comments
 (0)