Skip to content

Commit

Permalink
Omitted a couple of files.
Browse files Browse the repository at this point in the history
  • Loading branch information
harro committed Mar 23, 2018
1 parent 36f93f4 commit c6986c4
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 @@ -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=[
Expand Down
2 changes: 1 addition & 1 deletion textfsm.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c6986c4

Please sign in to comment.