Skip to content

Commit 6eed1c3

Browse files
committed
update readme for v0.3.0
1 parent 232f708 commit 6eed1c3

2 files changed

Lines changed: 15 additions & 13 deletions

File tree

README.rst

Lines changed: 10 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ approach. It's not perfect, but it gets you pretty far.
2727
suffix: 'III'
2828
nickname: 'Doc Vega'
2929
]>
30+
>>> name.as_dict()
31+
{u'last': u'de la Vega', u'suffix': u'III', u'title': u'Dr.', u'middle': u'Q. Xavier', u'nickname': u'Doc Vega', u'first': u'Juan'}
3032

3133

3234
Unit Tests
@@ -42,16 +44,11 @@ for names that fail and I will try to fix it.
4244
Installation
4345
------------
4446

45-
.. ``pip install nameparser``
46-
..
47-
.. I usually push changes to `PyPi <https://pypi.python.org/pypi/nameparser>`_
48-
.. pretty quickly. If you want to try out the latest code from GitHub you can
49-
.. install with pip using the command below.
47+
``pip install nameparser``
5048

51-
If you're starting a new project, I recommend installing master from GitHub to give v0.3
52-
a try. Customizing it is not backwards compatible with v0.2.10 (the current version on
53-
pypi) because the configuration layout changed, but passes all the same tests, and is
54-
easier to configure.
49+
I usually push changes to `PyPi <https://pypi.python.org/pypi/nameparser>`_
50+
pretty quickly. If you want to try out the latest code from GitHub you can
51+
install with pip using the command below.
5552

5653
``pip install -e git+git://github.com/derek73/python-nameparser.git#egg=nameparser``
5754

@@ -63,13 +60,14 @@ simple Heroku-friendly Flask wrapper for this module.
6360
Documentation
6461
-------------
6562

66-
**NOTE:** This documentation covers the new **version 0.3** that has yet to be released
67-
to PyPi. For the v0.2.10 documentation, see the `v0.2.10 tag`_ on GitHub.
63+
http://nameparser.readthedocs.org/en/latest/
64+
65+
**NOTE:** This documentation covers the new **version 0.3**. For the v0.2.10 documentation,
66+
see the `v0.2.10 tag`_ on GitHub.
6867

6968
.. _v0.2.10 tag: https://github.com/derek73/python-nameparser/tree/v0.2.10
7069

7170

72-
http://nameparser.readthedocs.org/en/latest/
7371

7472
Contributing
7573
------------

setup.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,12 @@ def read(fname):
2626
'Operating System :: OS Independent',
2727
"License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)",
2828
'Programming Language :: Python',
29-
'Programming Language :: Python :: 2',
29+
'Programming Language :: Python :: 2.6',
30+
'Programming Language :: Python :: 2.7',
3031
'Programming Language :: Python :: 3',
32+
'Programming Language :: Python :: 3.2',
33+
'Programming Language :: Python :: 3.3',
34+
'Programming Language :: Python :: 3.4',
3135
'Development Status :: 5 - Production/Stable',
3236
'Natural Language :: English',
3337
"Topic :: Software Development :: Libraries :: Python Modules",

0 commit comments

Comments
 (0)