-
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
Jan 22, 2024
1 parent
a4c2f82
commit d4442b8
Showing
11 changed files
with
689 additions
and
687 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,42 +16,40 @@ | |
|
||
"""Setup script.""" | ||
|
||
from setuptools import setup, find_packages | ||
import textfsm | ||
# To use a consistent encoding | ||
from codecs import open | ||
from os import path | ||
from setuptools import find_packages, setup | ||
import textfsm | ||
|
||
here = path.abspath(path.dirname(__file__)) | ||
|
||
# Get the long description from the README file | ||
with open(path.join(here, 'README.md'), encoding="utf8") as f: | ||
long_description = f.read() | ||
with open(path.join(here, 'README.md'), encoding='utf8') 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=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: Apache Software License', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: 2', | ||
'Programming Language :: Python :: 3', | ||
'Topic :: Software Development :: Libraries'], | ||
packages=['textfsm'], | ||
entry_points={ | ||
'console_scripts': [ | ||
'textfsm=textfsm.parser:main' | ||
] | ||
}, | ||
include_package_data=True, | ||
package_data={'textfsm': ['../testdata/*']}, | ||
install_requires=['six', 'future'], | ||
) | ||
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=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: Apache Software License', | ||
'Operating System :: OS Independent', | ||
'Programming Language :: Python :: 3', | ||
'Topic :: Software Development :: Libraries', | ||
], | ||
packages=['textfsm'], | ||
entry_points={'console_scripts': ['textfsm=textfsm.parser:main']}, | ||
include_package_data=True, | ||
package_data={'textfsm': ['../testdata/*']}, | ||
) |
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
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.