forked from swimlane/python-office365
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
42 lines (36 loc) · 1.39 KB
/
setup.py
File metadata and controls
42 lines (36 loc) · 1.39 KB
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
39
40
41
42
#!/usr/bin/env python
from setuptools import setup
import sys
from os.path import normpath, dirname, join
sys.path.insert(0, normpath(dirname(__file__)))
from office365api import __version__ as _version
def read_rst():
with open('README.rst') as f:
return f.read()
README = normpath(join(dirname(__file__), 'README.rst'))
CLASSIFIERS = [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: PyPy',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Office/Business :: Office Suites',
'Topic :: Software Development :: Libraries'
]
setup(name='office365api',
version=_version,
description='Python library for working with Microsoft Office 365',
long_description=read_rst(),
author='Dmitriy Krasnikov',
maintainer='Dmitriy Krasnikov',
url='https://github.com/swimlane/python-office365',
packages=['office365api', 'office365api/model', 'office365api/mail'],
install_requires=['requests', 'funcsigs'],
license='MIT',
classifiers=CLASSIFIERS
)