Skip to content

Commit

Permalink
Updated .travis.yml, README and setup.py to reflect Python version su…
Browse files Browse the repository at this point in the history
…pport.
  • Loading branch information
polera committed Jun 1, 2012
1 parent 435f360 commit 7f6240b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Expand Up @@ -2,6 +2,7 @@ language: python
python:
- 2.6
- 2.7
- 3.2

install: python setup.py install

Expand Down
4 changes: 4 additions & 0 deletions README.md
Expand Up @@ -28,11 +28,15 @@ You can use it like this:
Installing
----------
From source:

python setup.py install

via pip:

pip install nameparts

nameparts runs on CPython 2.6, 2.7, 3.2 and PyPy

License
-------
nameparts is released under the BSD license.
Expand Down
2 changes: 1 addition & 1 deletion nameparts.py
Expand Up @@ -246,4 +246,4 @@ def get_name_as_dict(self):
'middle_name': self.middle_name,
'generation' : self.generation,
'suffix': self.suffix}
as_dict = property(get_name_as_dict)
as_dict = property(get_name_as_dict)
7 changes: 4 additions & 3 deletions setup.py
Expand Up @@ -21,24 +21,25 @@ def read(fname):

settings.update(
name='nameparts',
version='0.5.2',
version='0.5.3',
description='Takes a full human name and splits it into individual parts',
long_description=read('README.md'),
author='James Polera',
author_email='james@uncryptic.com',
url='https://github.com/polera/nameparts',
keywords='name text processing',
keywords=['name', 'text', 'processing'],
py_modules=['nameparts',],
tests_require = ['unittest2',],
test_suite = "name_tests",
license='BSD',
classifiers=(
'Development Status :: 4 - Beta',
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
)
)

Expand Down

0 comments on commit 7f6240b

Please sign in to comment.