Skip to content

Commit a692d62

Browse files
authored
include resources in package (#7)
1 parent 2120a4c commit a692d62

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

setup.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ def read_file(filepath):
2525
bugtrack_url = __bugtrack_url__,
2626
install_requires = [],
2727
packages=find_packages(exclude=['tests']),
28-
package_data={'spellchecker': ['resources/*.txt']},
28+
package_data={'spellchecker': ['resources/*']},
29+
include_package_data = True,
2930
long_description = read_file('README.rst'),
3031
classifiers = [
3132
'Development Status :: 3 - Alpha',

spellchecker/info.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
__maintainer__ = 'Tyler Barrus'
66
__email__ = '[email protected]'
77
__license__ = 'MIT'
8-
__version__ = '0.1.1'
8+
__version__ = '0.1.2'
99
__credits__ = ['Peter Norvig']
1010
__url__ = 'https://github.com/barrust/pyspellchecker'
1111
__bugtrack_url__ = '{0}/issues'.format(__url__)

0 commit comments

Comments
 (0)