Skip to content

Commit

Permalink
include patterns in wheel
Browse files Browse the repository at this point in the history
  • Loading branch information
tmessi committed Sep 16, 2015
1 parent 407bdf8 commit f2b3fb9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,17 @@
'packages': find_packages(exclude=[
'*.tests*', '*.tests.*', 'tests.*', 'tests',
]),
'package_data': {},
# 'package_data': {
# 'yalp_gork': [
# 'LICENSE',
# 'README.rst',
# 'tests/*',
# 'yalp_grok/patterns/*',
# 'requirements.txt',
# 'dev_requirements.txt',
# ],
# },
'include_package_data': True,
'data_files': [],
'install_requires': REQUIREMENTS,
}
Expand Down
2 changes: 1 addition & 1 deletion yalp_grok/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
from __future__ import print_function

from distutils.version import StrictVersion # pylint: disable=E0611,F0401
__version__ = str(StrictVersion('0.1'))
__version__ = str(StrictVersion('0.2'))
del StrictVersion


Expand Down

0 comments on commit f2b3fb9

Please sign in to comment.