Skip to content

Commit da0553f

Browse files
committed
Bump version setup.py and add choam as dependency
1 parent 999609b commit da0553f

File tree

5 files changed

+5
-46
lines changed

5 files changed

+5
-46
lines changed

.github/workflows/python-publish.yml

Lines changed: 0 additions & 36 deletions
This file was deleted.

pyserved/__init__.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,4 @@ def main():
3434
print("")
3535

3636

37-
if __name__ == "__main__":
38-
main()
39-
else:
40-
pass
41-
37+
main()

pyserved/pdhost.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,3 @@ def get_internal_ip():
6868
print(
6969
"\n[bold red]OSError: [Error 98] Address already in use.If not, please try again in a few seconds. If error message persists, please use the -port argument to set a new port.[/]"
7070
)
71-

pyserved/pdsnd.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -157,4 +157,3 @@ def get_internal_ip():
157157
f"\n[bold red]File '{filename}' does not exist. Please correct the file path and try again[/]"
158158
)
159159
exit()
160-

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name="pyserved",
9-
version="2.0.8",
9+
version="2.1",
1010
description="Network transfer/hosting utilities by SblipDev.",
1111
long_description_content_type="text/markdown",
1212
long_description=long_description,
@@ -15,7 +15,8 @@
1515
author_email="shaurya.p.singh21@gmail.com",
1616
license="MIT",
1717
packages=["pyserved"],
18-
install_requires=["rich"],
18+
install_requires=["rich", "choam"],
1919
include_package_data=True,
20-
scripts=["pyserved/bin/pdlisten", "pyserved/bin/pdsnd", "pyserved/bin/pdhost"],
20+
scripts=["pyserved/bin/pdlisten",
21+
"pyserved/bin/pdsnd", "pyserved/bin/pdhost"],
2122
)

0 commit comments

Comments
 (0)