Skip to content

Commit 442e1bc

Browse files
committed
Add long_description to setup.py; Update README.md
1 parent a5dbcdb commit 442e1bc

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ This library works for API version: v9.0
44

55
## Installing
66
```
7-
git+git://github.com/GearPlug/dynamics365crm-python.git
7+
pip install dynamics365crm-python
88
```
99

1010
## Usage

setup.py

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

4+
5+
def read(fname):
6+
return open(os.path.join(os.path.dirname(__file__), fname)).read()
7+
8+
39
setup(name='dynamics365crm-python',
410
version='0.1',
511
description='API wrapper for Dynamics365CRM written in Python',
12+
long_description=read('README.md'),
613
url='https://github.com/GearPlug/dynamics365crm-python',
714
author='Yordy Gelvez',
815
author_email='[email protected]',

0 commit comments

Comments
 (0)