diff --git a/MANIFEST.in b/MANIFEST.in new file mode 100644 index 00000000..70f8db89 --- /dev/null +++ b/MANIFEST.in @@ -0,0 +1 @@ +graft tests/fixtures diff --git a/changelog.txt b/changelog.txt index 30da0693..945e2c71 100644 --- a/changelog.txt +++ b/changelog.txt @@ -1,5 +1,8 @@ jc changelog +20200208 v1.7.2 +- Include test fixtures in wheel + 20200205 v1.7.1 - Add YAML file parser - Add INI file parser diff --git a/jc/cli.py b/jc/cli.py index 526e1bb2..15f3774a 100644 --- a/jc/cli.py +++ b/jc/cli.py @@ -11,7 +11,7 @@ import jc.utils class info(): - version = '1.7.1' + version = '1.7.2' description = 'jc cli output JSON conversion tool' author = 'Kelly Brazil' author_email = 'kellyjonbrazil@gmail.com' diff --git a/setup.py b/setup.py index c32b3a18..f1382252 100755 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ with open('README.md', 'r') as f: setuptools.setup( name='jc', - version='1.7.1', + version='1.7.2', author='Kelly Brazil', author_email='kellyjonbrazil@gmail.com', description='This tool serializes the output of popular command line tools and filetypes to structured JSON output.', @@ -20,6 +20,7 @@ setuptools.setup( python_requires='>=3.6', url='https://github.com/kellyjonbrazil/jc', packages=setuptools.find_packages(), + include_package_data=True, entry_points={ 'console_scripts': [ 'jc=jc.cli:main'