From c6986c48faf2f37ca397ff0c44bb79a01004b1e6 Mon Sep 17 00:00:00 2001 From: Daniel Harrison Date: Thu, 22 Mar 2018 17:06:34 -0700 Subject: [PATCH] Omitted a couple of files. --- setup.py | 12 +++++++++++- textfsm.py | 2 +- 2 files changed, 12 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 0e38765..6acfbd4 100755 --- a/setup.py +++ b/setup.py @@ -16,15 +16,25 @@ """Setup script.""" -from setuptools import setup +from setuptools import setup, find_packages import textfsm +# To use a consistent encoding +from codecs import open +from os import path +here = path.abspath(path.dirname(__file__)) + +# Get the long description from the README file +with open(path.join(here, 'README.md')) as f: + long_description = f.read() setup(name='textfsm', maintainer='Google', maintainer_email='textfsm-dev@googlegroups.com', version=textfsm.__version__, description='Python module for parsing semi-structured text into python tables.', + long_description=long_description, + long_description_content_type=text/markdown, url='https://github.com/google/textfsm', license='Apache License, Version 2.0', classifiers=[ diff --git a/textfsm.py b/textfsm.py index 08f7734..8055571 100755 --- a/textfsm.py +++ b/textfsm.py @@ -28,7 +28,7 @@ from __future__ import division from __future__ import print_function -__version__ = '0.3.3' +__version__ = '0.4.0' import getopt import inspect