-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- fixed issue with parsing regular expressions and suppressed deprecation warnings ("Flags not at the start of the expression"). - cleaned output for '--count' option and added string count along with cell and row count - added support for .cvs files
- Loading branch information
Showing
4 changed files
with
175 additions
and
135 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
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
[metadata] | ||
name = xlsxgrep | ||
version = 0.0.27 | ||
author = Ivan Cvitic | ||
author_email = cviticivan@gmail.com | ||
license = MIT | ||
description = CLI tool to search text in XLSX, XLS and ODS files. It works similarly to Unix\GNU Linux grep | ||
url = https://github.com/zazuum/xlsxgrep | ||
long_description = file: README.md | ||
long_description_content_type = text/markdown | ||
classifiers = | ||
Environment :: Console | ||
License :: OSI Approved :: MIT License | ||
Intended Audience :: Developers | ||
Intended Audience :: Education | ||
Intended Audience :: End Users/Desktop | ||
Operating System :: OS Independent | ||
Programming Language :: Python :: 3 | ||
Programming Language :: Python :: 3.7 | ||
Programming Language :: Python :: 3.8 | ||
Programming Language :: Python :: 3.9 | ||
Programming Language :: Python :: 3.10 | ||
Topic :: Scientific/Engineering :: Information Analysis | ||
Topic :: Scientific/Engineering :: Bio-Informatics | ||
Topic :: Utilities | ||
|
||
[options] | ||
packages = xlsxgrep | ||
install_requires = | ||
pyexcel | ||
pyexcel-xls | ||
pyexcel-xlsx | ||
pyexcel-ods3 | ||
pyexcel-ods | ||
include_package_data = True | ||
|
||
[options.entry_points] | ||
console_scripts = xlsxgrep=xlsxgrep.xlsxgrep:main |
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 |
---|---|---|
@@ -1,38 +1,6 @@ | ||
from setuptools import setup | ||
|
||
def readme(): | ||
with open('README.md') as f: | ||
README = f.read() | ||
return README | ||
#!/usr/bin/env python | ||
|
||
from setuptools import setup | ||
|
||
setup( | ||
name="xlsxgrep", | ||
version="0.0.26", | ||
description="CLI tool to search text in XLSX, XLS and ODS files. It works similarly to Unix\GNU Linux grep", | ||
long_description=readme(), | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/zazuum/xlsxgrep", | ||
author="Ivan Cvitic", | ||
author_email="cviticivan@gmail.com", | ||
license="MIT", | ||
classifiers=[ | ||
"License :: OSI Approved :: MIT License", | ||
"Intended Audience :: Developers", | ||
"Intended Audience :: Education", | ||
"Intended Audience :: End Users/Desktop", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.7", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
], | ||
packages=["xlsxgrep"], | ||
include_package_data=True, | ||
install_requires=["pyexcel","pyexcel-xls", "pyexcel-xlsx", "pyexcel-ods3", "pyexcel-ods"], | ||
entry_points={ | ||
"console_scripts": [ | ||
"xlsxgrep=xlsxgrep.xlsxgrep:main", | ||
] | ||
}, | ||
) | ||
if __name__ == "__main__": | ||
setup() |
Oops, something went wrong.