Skip to content

Commit

Permalink
include resources in package (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
barrust authored May 20, 2018
1 parent 2120a4c commit a692d62
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ def read_file(filepath):
bugtrack_url = __bugtrack_url__,
install_requires = [],
packages=find_packages(exclude=['tests']),
package_data={'spellchecker': ['resources/*.txt']},
package_data={'spellchecker': ['resources/*']},
include_package_data = True,
long_description = read_file('README.rst'),
classifiers = [
'Development Status :: 3 - Alpha',
Expand Down
2 changes: 1 addition & 1 deletion spellchecker/info.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
__maintainer__ = 'Tyler Barrus'
__email__ = 'barrust@gmail.com'
__license__ = 'MIT'
__version__ = '0.1.1'
__version__ = '0.1.2'
__credits__ = ['Peter Norvig']
__url__ = 'https://github.com/barrust/pyspellchecker'
__bugtrack_url__ = '{0}/issues'.format(__url__)

0 comments on commit a692d62

Please sign in to comment.