-
Notifications
You must be signed in to change notification settings - Fork 15
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
1 parent
7c7bb05
commit 1b85a07
Showing
2 changed files
with
7 additions
and
7 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 |
---|---|---|
|
@@ -4,8 +4,8 @@ build-backend = "setuptools.build_meta" | |
|
||
[project] | ||
name = "peepdb" | ||
version = "0.1.3" | ||
description = "A quick database table viewer" | ||
version = "0.1.4" | ||
description = "CLI tool to view database tables fast" | ||
authors = [ | ||
{name = "Evangelos Meklis", email = "[email protected]"}, | ||
] | ||
|
@@ -40,8 +40,8 @@ dev = [ | |
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/evangelosmeklis/peepdb" | ||
"Bug Tracker" = "https://github.com/evangelosmeklis/peepdb/issues" | ||
Homepage = "https://github.com/PeepDB-dev/peepdb" | ||
"Bug Tracker" = "https://github.com/PeepDB-dev/peepdb/issues" | ||
|
||
[project.scripts] | ||
peepdb = "peepdb.cli: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 |
---|---|---|
|
@@ -5,13 +5,13 @@ | |
|
||
setup( | ||
name="peepdb", | ||
version="0.1.3", | ||
version="0.1.4", | ||
author="Evangelos Meklis", | ||
author_email="[email protected]", | ||
description="A quick database table viewer", | ||
description="CLI tool to view database tables fast", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/evangelosmeklis/peepdb", | ||
url="https://github.com/PeepDB-dev/peepdb", | ||
packages=find_packages(), | ||
install_requires=[ | ||
"mysql-connector-python>=9.0.0", | ||
|