Skip to content

Commit fbb29d2

Browse files
committed
bump version to 0.3.1, include new config in pypi package
1 parent d01cfeb commit fbb29d2

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

MANIFEST.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
include AUTHORS
22
include LICENSE
3-
include README.rst
3+
include README.rst

dist/nameparser-0.3.1.tar.gz

13.6 KB
Binary file not shown.

nameparser/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION = (0, 3, 0)
1+
VERSION = (0, 3, 1)
22
__version__ = '.'.join(map(str, VERSION))
33
__author__ = "Derek Gulbranson"
44
__author_email__ = '[email protected]'

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ def read(fname):
1212
README = read('README.rst')
1313

1414
setup(name='nameparser',
15-
packages = ['nameparser'],
15+
packages = ['nameparser','nameparser.config'],
1616
description = 'A simple Python module for parsing human names into their individual components.',
1717
long_description = README,
1818
version = nameparser.__version__,

0 commit comments

Comments
 (0)