forked from linkedin/pyexchange
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·38 lines (35 loc) · 1.1 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
import os
from setuptools import setup, find_packages
here = os.path.abspath(os.path.dirname(__file__))
try:
README = open(os.path.join(here, 'README.md')).read()
CHANGES = open(os.path.join(here, 'CHANGES.rst')).read()
except:
README = ''
CHANGES = ''
setup(
name='pyexchange',
version='0.4-dev',
url='https://github.com/linkedin/pyexchange',
license='Apache',
author='Rachel Sanders',
author_email='[email protected]',
maintainer='Rachel Sanders',
maintainer_email='[email protected]',
description='A simple library to talk to Microsoft Exchange',
long_description=README + '\n\n' + CHANGES,
zip_safe=False,
test_suite="tests",
platforms='any',
include_package_data=True,
packages=find_packages('.', exclude=['test*']),
install_requires=['lxml', 'pytz', 'python-ntlm'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules'
]
)