-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Daniel Harrison
committed
Mar 23, 2018
1 parent
36f93f4
commit c6986c4
Showing
2 changed files
with
12 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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='[email protected]', | ||
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=[ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters