This repository has been archived by the owner on Dec 13, 2018. It is now read-only.
forked from O365/python-o365
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Jandro
committed
Oct 19, 2018
1 parent
9785049
commit 8f502e8
Showing
1 changed file
with
0 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,6 @@ | ||
import os | ||
from setuptools import setup, find_packages | ||
|
||
long_desc = """ | ||
This project aims is to make it easy to interact with Microsoft Graph and Office 365 Email, Contacts, Calendar, OneDrive, etc. | ||
This project is inspired on the super work done by [Toben Archer](https://github.com/Narcolapser) [Python-O365](https://github.com/Narcolapser/python-o365). | ||
The oauth part is based on the work done by [Royce Melborn](https://github.com/roycem90) which is now integrated with the original project. | ||
I just want to make this project different in almost every sense, and make it also more pythonic. | ||
So I ended up rewriting the hole project from scratch. | ||
The result is a package that provides a lot of the Microsoft Graph and Office 365 API capabilities. | ||
This is for example how you send a message: | ||
from pyo365 import Account | ||
credentials = ('client_id', 'client_secret') | ||
account = Account(credentials, auth_method='oauth') | ||
m = account.new_message() | ||
m.to.add('[email protected]') | ||
m.subject = 'Testing!' | ||
m.body = "George Best quote: I've stopped drinking, but only while I'm asleep." | ||
m.send() | ||
""" | ||
|
||
# Available classifiers: https://pypi.org/pypi?%3Aaction=list_classifiers | ||
CLASSIFIERS = [ | ||
|