We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5dbcdb commit 442e1bcCopy full SHA for 442e1bc
README.md
@@ -4,7 +4,7 @@ This library works for API version: v9.0
4
5
## Installing
6
```
7
-git+git://github.com/GearPlug/dynamics365crm-python.git
+pip install dynamics365crm-python
8
9
10
## Usage
setup.py
@@ -1,8 +1,15 @@
1
+import os
2
from setuptools import setup
3
+
+def read(fname):
+ return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(name='dynamics365crm-python',
version='0.1',
11
description='API wrapper for Dynamics365CRM written in Python',
12
+ long_description=read('README.md'),
13
url='https://github.com/GearPlug/dynamics365crm-python',
14
author='Yordy Gelvez',
15
author_email='[email protected]',
0 commit comments