forked from swimlane/pyews
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (27 loc) · 937 Bytes
/
setup.py
File metadata and controls
29 lines (27 loc) · 937 Bytes
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
from setuptools import setup, find_packages
def parse_requirements(requirement_file):
with open(requirement_file) as f:
return f.readlines()
setup(
name='py-ews',
version='3.2.0',
packages=find_packages(exclude=['tests*']),
license='MIT',
description='A Python package to interact with both on-premises and Office 365 Exchange Web Services',
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
install_requires=parse_requirements('./requirements.txt'),
keywords=['ews', 'exchange', 'office365', 'email', 'ediscovery', 'swimlane'],
url='https://github.com/swimlane/pyews',
author='Swimlane',
author_email='info@swimlane.com',
python_requires='>=3.6, <4',
package_data={
'pyews': ['data/logging.yml']
},
entry_points={
'console_scripts': [
'pyews = pyews.__main__:main'
]
},
)