forked from jasonrollins/shareplum
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
40 lines (36 loc) · 1.28 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
39
40
import re
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from codecs import open
with open('shareplum/version.py', 'r') as fd:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
fd.read(), re.MULTILINE).group(1)
setup(
name='SharePlum',
version=version,
description='Python SharePoint Library',
long_description=open('README.rst').read(),
url='https://github.com/jasonrollins/shareplum',
author='Jason Rollins',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Intended Audience :: Developers',
'Intended Audience :: Information Technology',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Office/Business',
],
keywords=['SharePoint'],
packages=['shareplum'],
install_requires=['lxml', 'requests', 'requests-ntlm', 'requests-toolbelt'],
)