Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
furkanonder committed Oct 9, 2021
1 parent bc9835c commit acbca1b
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion bor.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ def main():
parser = argparse.ArgumentParser(
description="User friendly, tiny source code searcher written by pure Python."
)
parser.add_argument("-v", "--version", action="version", version="0.0.1")
parser.add_argument("-v", "--version", action="version", version="0.1.0")
parser.add_argument(
"-i",
"--ignore-error",
Expand Down
12 changes: 8 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ def get_long_description():

setup(
name="bor",
version="0.0.1",
version="0.1.0",
long_description=get_long_description(),
long_description_content_type="text/markdown",
description="User-friendly, tiny source code searcher written by pure Python.",
Expand All @@ -22,7 +22,7 @@ def get_long_description():
author_email="[email protected]",
url="https://github.com/furkanonder/bor/",
license="MIT",
python_requires=">=3.0",
python_requires=">=3.6",
py_modules=["bor"],
install_requires=[],
extras_require={},
Expand All @@ -36,9 +36,13 @@ def get_long_description():
"Intended Audience :: End Users/Desktop",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Operating System :: POSIX :: Linux",
"Operating System :: Unix ",
"Operating System :: Unix",
"Operating System :: Microsoft :: Windows",
],
entry_points={
"console_scripts": [
Expand Down

0 comments on commit acbca1b

Please sign in to comment.