Skip to content
This repository has been archived by the owner on May 15, 2023. It is now read-only.

Commit

Permalink
Fix version and increase to 0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonrollins committed Jun 16, 2016
1 parent f095cef commit cb55b00
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 4 deletions.
1 change: 1 addition & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ Features

- Reading and writing data to SharePoint lists using Python Dictionaries.
- Automatic conversion between SharePoint internal names and displayed names.
- Using Queries to filter date when retrieving List Items.
- Automatic conversion of data types.
- Supports Users datatype

Expand Down
5 changes: 5 additions & 0 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@
Changelog
=========

0.1.1
=====

Added support for Python 2.7

0.1.0
=====

Expand Down
2 changes: 2 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[bdist_wheel]
universal=1
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

from codecs import open

with open('shareplum/__init__.py', 'r') as fd:
with open('shareplum/version.py', 'r') as fd:
version = re.search(r'^__version__\s*=\s*[\'"]([^\'"]*)[\'"]',
fd.read(), re.MULTILINE).group(1)

Expand All @@ -23,6 +23,9 @@
classifiers=[
'Development Status :: 4 - Beta',
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
Expand All @@ -35,7 +38,7 @@
'Topic :: Internet :: WWW/HTTP',
'Topic :: Office/Business',
],
keywords='Microsoft SharePoint SharePoint2010 SharePoint2013',
keywords=['SharePoint'],
packages=['shareplum'],
install_requires=['lxml', 'requests', 'requests-ntlm'],
)
2 changes: 1 addition & 1 deletion shareplum/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
# server using python

__title__ = 'SharePlum SharePoint Library'
__version__ = '0.1.1'
__author__ = 'Jason Rollins'

from .shareplum import *
from .ListDict import *
from .version import __version__
2 changes: 1 addition & 1 deletion shareplum/shareplum.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from __future__ import unicode_literals
from __init__ import __version__
from .version import __version__
from lxml import etree
import requests
from datetime import datetime
Expand Down
1 change: 1 addition & 0 deletions shareplum/version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
__version__ = '0.1.1'

0 comments on commit cb55b00

Please sign in to comment.