forked from ox-it/python-sharepoint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
27 lines (23 loc) · 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
from distutils.core import setup
__version__ = '0.4-1'
packages = ['sharepoint',
'sharepoint.lists']
setup(name='sharepoint',
description='Module and command-line utility to get data out of SharePoint',
long_description=open('README.rst').read(),
author='IT Services, University of Oxford',
author_email='[email protected]',
version=__version__,
packages=packages,
scripts=['bin/sharepoint'],
url='https://github.com/ox-it/python-sharepoint',
classifiers=['Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: System Administrators',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Office/Business :: Groupware'],
keywords=['SharePoint'],
install_requires=['lxml'])