forked from IntegralDefense/phishfry
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
25 lines (22 loc) · 830 Bytes
/
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
#!/usr/bin/env python
import io
import os
from setuptools import setup
def read(file_name):
with io.open(os.path.join(os.path.dirname(__file__), file_name), encoding='utf-8') as f:
return f.read()
setup(
name='phishfry',
version="1.0.1",
author='Cole Robinette',
author_email='[email protected]',
description='Python library and command line tool for removing/restoring emails in office365/Exchange using EWS API',
long_description=read('README.md'),
long_description_content_type='text/markdown',
keywords='ews exchange microsoft outlook exchange-web-services o365 office365',
install_requires=['requests>=2.7', 'lxml>3.0', 'requests_ntlm'],
packages=['phishfry'],
python_requires=">=2.7",
zip_safe=False,
url='https://github.com/ace-ecosystem/phishfry',
)