-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
35 lines (29 loc) · 1.3 KB
/
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
31
32
33
34
35
import setuptools
from pyOutlook import __release__
setuptools.setup(
name='pyOutlook',
version=__release__,
packages=['pyOutlook', 'pyOutlook.internal', 'pyOutlook.core'],
url='https://pypi.python.org/pypi/pyOutlook',
license='MIT',
author='Jens Astrup',
author_email='[email protected]',
description='A Python module for connecting to the Outlook REST API, without the hassle of dealing with the '
'JSON formatting for requests/responses and the REST endpoints and their varying requirements',
long_description='Documentation is available at `ReadTheDocs <http://pyoutlook.readthedocs.io/en/latest/>`_.',
install_requires=['requests', 'python-dateutil'],
tests_require=['coverage', 'pytest', 'pytest-cov'],
keywords='outlook office365 microsoft email',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'Topic :: Communications :: Email :: Email Clients (MUA)',
'Topic :: Office/Business',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 2.7',
'Natural Language :: English'
]
)