Skip to content

Commit

Permalink
correct setup.py + better readme
Browse files Browse the repository at this point in the history
  • Loading branch information
daveoncode committed Jul 31, 2015
1 parent e9f45c9 commit c59aa86
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
2 changes: 2 additions & 0 deletions MANIFEST
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# file GENERATED by distutils, do NOT edit
README.md
setup.py
string_utils.py
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Python String Utils

A small utility library for strings.
A small utility library to check and manipulate strings.

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


## What's inside...

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


---
## Installation

pip install python-string-utils


## Documentation

Full API documentation available on: <http://python-string-utils.readthedocs.org/en/latest/>
Full API documentation available on: <http://python-string-utils.readthedocs.org/en/latest/>
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name='python-string-utils',
version='0.1.1',
version='0.1.2',
description='Utility functions for strings checking and manipulation.',
long_description=long_description,
author='Davide Zanotti',
Expand Down Expand Up @@ -34,4 +34,6 @@
'Programming Language :: Python :: 3.4',
],
keywords='string str utilities development',
py_modules=['string_utils'],
data_files=[('README', ['README.md'])],
)
2 changes: 1 addition & 1 deletion string_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import random

# module settings
__version__ = '0.1.1'
__version__ = '0.1.2'
__all__ = [
'is_url',
'is_email',
Expand Down

0 comments on commit c59aa86

Please sign in to comment.