forked from vgrem/office365-rest-python-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
41 lines (37 loc) · 1.14 KB
/
setup.py
File metadata and controls
41 lines (37 loc) · 1.14 KB
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
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="Office365-REST-Python-Client",
version="2.1.4",
author="Vadim Gremyachev",
author_email="vvgrem@gmail.com",
maintainer="Konrad Gądek",
maintainer_email="kgadek@gmail.com",
description="Office 365 Library for Python",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/vgrem/Office365-REST-Python-Client",
install_requires=['requests', 'adal'],
extras_require={
'NTLMAuthentication': ["requests_ntlm"]
},
tests_require=['nose'],
test_suite='nose.collector',
license="MIT",
keywords="git",
classifiers=[
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries"
],
packages=setuptools.find_packages(),
package_data={
'office365': ["runtime/auth/SAML.xml"]
}
)