Skip to content

Commit

Permalink
chore: remove unused file
Browse files Browse the repository at this point in the history
  • Loading branch information
krypton-byte committed Oct 26, 2024
1 parent f3a2796 commit b3c8623
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 40 deletions.
4 changes: 4 additions & 0 deletions goneonize/build.py → goneonize/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ def build():
args = argparse.ArgumentParser()
sub = args.add_subparsers(dest="build", required=True)
sub.add_parser("goneonize")
# arg.add_argument("--out", type=str, default=os.path.dirname(cwd) + "/neonize/")
sub.add_parser("proto")
sub.add_parser("all")
parse = args.parse_args()
Expand Down Expand Up @@ -159,3 +160,6 @@ def build_android():
# env=os.environ.update({"build_neonize": "1"}),
# shell=os.name == "nt",
# )

if __name__ == '__main__':
build()
39 changes: 0 additions & 39 deletions install.py

This file was deleted.

3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ tqdm = "^4.66.1"

httpx = "^0.27.2"
aiomonitor = "^0.7.0"
setuptools = "^75.2.0"
[tool.mypy]
exclude = [
"_pb2.py"
Expand All @@ -61,5 +62,5 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry.scripts]
docsbuild = "docs.build:build"
build = "goneonize.build:build"
build = "goneonize.__main__:build"
version = "goneonize.build:set_version"

0 comments on commit b3c8623

Please sign in to comment.