-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 1001 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
from setuptools import setup
import msgraph
description = 'Python wrapper to the Microsoft Graph API'
with open('README.md', 'r') as input_file:
long_description = input_file.read()
setup(
name='python-msgraph',
version=msgraph.__version__,
long_description_content_type='text/markdown',
long_description=long_description,
description='Python wrapper to the Microsoft Graph API',
author='Doug Fenstermacher',
author_email='[email protected]',
url='https://github.com/WMInfoTech/python-msgraph',
packages=['msgraph', 'msgraph.beta'],
keywords='microsoft, graph, api, group, calendar, event, site, list, listitem, drive, file',
license='Apache2',
project_urls={
'Source': 'https://github.com/WMInfoTech/python-msgraph',
'Tracker': 'https://github.com/WMInfoTech/python-msgraph/issues'
},
install_requires=['adal>=1.2.2', 'requests>=2.12.0'],
options={
'bdist_wheel': {
'universal': True
}
}
)