generated from areed1192/sigma-template
-
-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathsetup.py
20 lines (18 loc) · 729 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from setuptools import setup
from setuptools import find_namespace_packages
# Open the README file.
with open(file="README.md", mode="r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="ms-graph-python-client",
author="Alex Reed",
author_email="[email protected]",
version="0.1.0",
description="A Python Client Application that allows interaction with the Microsoft Graph API.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/areed1192/ms-graph-python-client",
install_requires=["requests", "msal"],
packages=find_namespace_packages(include=["ms_graph", "ms_graph.*"]),
python_requires=">3.8",
)