Skip to content
This repository was archived by the owner on Dec 13, 2018. It is now read-only.

Commit 8f502e8

Browse files
author
Jandro
committed
Updated setup.py
1 parent 9785049 commit 8f502e8

1 file changed

Lines changed: 0 additions & 24 deletions

File tree

setup.py

Lines changed: 0 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,6 @@
11
import os
22
from setuptools import setup, find_packages
33

4-
long_desc = """
5-
This project aims is to make it easy to interact with Microsoft Graph and Office 365 Email, Contacts, Calendar, OneDrive, etc.
6-
7-
This project is inspired on the super work done by [Toben Archer](https://github.com/Narcolapser) [Python-O365](https://github.com/Narcolapser/python-o365).
8-
The oauth part is based on the work done by [Royce Melborn](https://github.com/roycem90) which is now integrated with the original project.
9-
10-
I just want to make this project different in almost every sense, and make it also more pythonic.
11-
So I ended up rewriting the hole project from scratch.
12-
13-
The result is a package that provides a lot of the Microsoft Graph and Office 365 API capabilities.
14-
15-
This is for example how you send a message:
16-
17-
from pyo365 import Account
18-
19-
credentials = ('client_id', 'client_secret')
20-
21-
account = Account(credentials, auth_method='oauth')
22-
m = account.new_message()
23-
m.to.add('to_example@example.com')
24-
m.subject = 'Testing!'
25-
m.body = "George Best quote: I've stopped drinking, but only while I'm asleep."
26-
m.send()
27-
"""
284

295
# Available classifiers: https://pypi.org/pypi?%3Aaction=list_classifiers
306
CLASSIFIERS = [

0 commit comments

Comments
 (0)