We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2120a4c commit a692d62Copy full SHA for a692d62
setup.py
@@ -25,7 +25,8 @@ def read_file(filepath):
25
bugtrack_url = __bugtrack_url__,
26
install_requires = [],
27
packages=find_packages(exclude=['tests']),
28
- package_data={'spellchecker': ['resources/*.txt']},
+ package_data={'spellchecker': ['resources/*']},
29
+ include_package_data = True,
30
long_description = read_file('README.rst'),
31
classifiers = [
32
'Development Status :: 3 - Alpha',
spellchecker/info.py
@@ -5,7 +5,7 @@
5
__maintainer__ = 'Tyler Barrus'
6
__email__ = '[email protected]'
7
__license__ = 'MIT'
8
-__version__ = '0.1.1'
+__version__ = '0.1.2'
9
__credits__ = ['Peter Norvig']
10
__url__ = 'https://github.com/barrust/pyspellchecker'
11
__bugtrack_url__ = '{0}/issues'.format(__url__)
0 commit comments