-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
35 lines (33 loc) · 1.07 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
""" PyPi package info """
from setuptools import setup
setup(name='ews-cli',
version='0.1.0.9',
description='Filter email via EWS endpoint',
url='https://github.com/KebinuChiousu/ews_cli',
download_url='https://github.com/KebinuChiousu/ews_cli/archive/v0.1.0.9.tar.gz',
author='Kevin Meredith',
author_email='kevin@meredithkm.info',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.5',
'Topic :: Communications :: Email',
],
keywords='owa ews filter',
packages=['ews_cli'],
install_requires=[
'exchangelib==1.11.4',
'keyring==13.0.0',
'SecretStorage==3.0.1',
'PyYAML>=3.12'
],
entry_points={
'console_scripts': [
'owa-filter=ews_cli.cli:main',
'ews-filter=ews_cli.cli:main',
'ews-cli=ews_cli.cli:main'
],
},
include_package_data=True,
zip_safe=False)