Skip to content

Commit

Permalink
Updating README with Install info
Browse files Browse the repository at this point in the history
  • Loading branch information
polera committed May 30, 2012
1 parent 65f8c09 commit a1f5145
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion README.md
Expand Up @@ -13,7 +13,9 @@ You can use it like this:
>>> n.last_name
'Howel'
>>> n.as_dict
{'first_name': 'Thurston', 'last_name': 'Howel', 'middle_name': None, 'suffix': None, 'generation': 'III', 'salutation': None}
{'first_name': 'Thurston', 'last_name': 'Howel', \
'middle_name': None, 'suffix': None, 'generation': 'III', \
'salutation': None}
>>> n = Name("Smith, John Paul")
>>> n.first_name
'John'
Expand All @@ -22,6 +24,14 @@ You can use it like this:
>>> n.middle_name
'Paul'

Installing
----------
From source:
python setup.py install

via pip:
pip install nameparts

License
-------
nameparts is released under the BSD license.
Expand Down

0 comments on commit a1f5145

Please sign in to comment.