Skip to content

Commit 2a4ecf3

Browse files
committed
Small doc update, add version info
1 parent fe196c1 commit 2a4ecf3

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

README.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ Python Library Core
44
Tools to ease creating larger test libraries for `Robot Framework`_ using
55
Python.
66

7-
At the moment work-in-progress. Planned to be used with Selenium2Library.
7+
Code ought to be pretty much ready and it is already used by Selenium2Library.
8+
Better documentation and packaging still to do.
89

910
Example
1011
-------

src/robotlibcore.py

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,13 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15+
"""Generic test library core for Robot Framework.
16+
17+
Main usage is easing creating larger test libraries. For more information and
18+
examples see the project pages at
19+
https://github.com/robotframework/PythonLibCore
20+
"""
21+
1522
import inspect
1623
import sys
1724

@@ -30,6 +37,8 @@ def decorator(func):
3037

3138
PY2 = sys.version_info < (3,)
3239

40+
__version__ = '1.0rc1'
41+
3342

3443
class HybridCore(object):
3544

0 commit comments

Comments
 (0)