Skip to content

Commit c59aa86

Browse files
committed
correct setup.py + better readme
1 parent e9f45c9 commit c59aa86

File tree

4 files changed

+15
-5
lines changed

4 files changed

+15
-5
lines changed

MANIFEST

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
# file GENERATED by distutils, do NOT edit
2+
README.md
23
setup.py
4+
string_utils.py

README.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Python String Utils
22

3-
A small utility library for strings.
3+
A small utility library to check and manipulate strings.
44

55
- simple and pythonic
66
- no external dependencies
@@ -9,6 +9,7 @@ A small utility library for strings.
99
- 100% code coverage
1010
- tested against multiple python versions (2.7, 3.2, 3.3, 3.4)
1111

12+
1213
## What's inside...
1314

1415
### String checking functions:
@@ -33,6 +34,11 @@ A small utility library for strings.
3334
...and more are coming!
3435

3536

36-
---
37+
## Installation
38+
39+
pip install python-string-utils
40+
41+
42+
## Documentation
3743

38-
Full API documentation available on: <http://python-string-utils.readthedocs.org/en/latest/>
44+
Full API documentation available on: <http://python-string-utils.readthedocs.org/en/latest/>

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name='python-string-utils',
8-
version='0.1.1',
8+
version='0.1.2',
99
description='Utility functions for strings checking and manipulation.',
1010
long_description=long_description,
1111
author='Davide Zanotti',
@@ -34,4 +34,6 @@
3434
'Programming Language :: Python :: 3.4',
3535
],
3636
keywords='string str utilities development',
37+
py_modules=['string_utils'],
38+
data_files=[('README', ['README.md'])],
3739
)

string_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
import random
55

66
# module settings
7-
__version__ = '0.1.1'
7+
__version__ = '0.1.2'
88
__all__ = [
99
'is_url',
1010
'is_email',

0 commit comments

Comments
 (0)