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 3c85591 commit c14cae8Copy full SHA for c14cae8
setup.py
@@ -0,0 +1,14 @@
1
+from setuptools import setup
2
+
3
+setup(name='microsoftgraph',
4
+ version='0.1',
5
+ description='API wrapper for Microsoft Graph written in Python',
6
+ url='https://github.com/GearPlug/microsoftgraph-python',
7
+ author='Miguel Ferrer, Nerio Rincon',
8
+ author_email='[email protected]',
9
+ license='GPL',
10
+ packages=['microsoftgraph'],
11
+ install_requires=[
12
+ 'requests',
13
+ ],
14
+ zip_safe=False)
0 commit comments