forked from ecederstrand/exchangelib
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
executable file
·38 lines (34 loc) · 1.09 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
36
37
38
#!/usr/bin/env python
"""
To upload to PyPI:
python setup.py sdist bdist_wheel upload
"""
import os
from setuptools import setup
def read(fname):
with open(os.path.join(os.path.dirname(__file__), fname)) as f:
return f.read()
setup(
name='exchangelib',
version='1.7.6',
author='Erik Cederstrand',
author_email='erik@cederstrand.dk',
description='Client for Microsoft Exchange Web Services (EWS)',
long_description=read('README.rst'),
license='BSD',
keywords='Exchange EWS autodiscover',
install_requires=['requests>=2.7', 'requests_ntlm>=0.2.0', 'dnspython>=1.14.0', 'pytz', 'lxml',
'cached_property', 'future', 'six'],
packages=['exchangelib'],
tests_require=['PyYAML'],
test_suite='tests',
zip_safe=False,
url='https://github.com/ecederstrand/exchangelib',
classifiers=[
'Development Status :: 5 - Production/Stable',
'Topic :: Communications',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
],
)