Skip to content

Commit c14cae8

Browse files
committed
Setup
1 parent 3c85591 commit c14cae8

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

setup.py

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)