OXIESEC PANEL
- Current Dir:
/
/
opt
/
gsutil
/
third_party
/
argcomplete
Server IP: 2a02:4780:11:1594:0:ef5:22d7:a
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
12/09/2024 05:26:03 PM
rwxr-xr-x
📁
.github
-
10/07/2024 04:00:12 AM
rwxr-xr-x
📄
.gitignore
474 bytes
10/07/2024 04:00:12 AM
rw-r--r--
📄
Authors.rst
35 bytes
10/07/2024 04:00:12 AM
rw-r--r--
📄
Changes.rst
15.61 KB
10/07/2024 04:00:12 AM
rw-r--r--
📄
LICENSE.rst
9.94 KB
10/07/2024 04:00:12 AM
rw-r--r--
📄
MANIFEST.in
79 bytes
10/07/2024 04:00:12 AM
rw-r--r--
📄
Makefile
757 bytes
10/07/2024 04:00:12 AM
rw-r--r--
📄
NOTICE
387 bytes
10/07/2024 04:00:12 AM
rw-r--r--
📄
README.rst
14.35 KB
10/07/2024 04:00:12 AM
rw-r--r--
📄
SECURITY.md
705 bytes
10/07/2024 04:00:12 AM
rw-r--r--
📁
argcomplete
-
02/11/2025 08:19:49 AM
rwxr-xr-x
📄
common.mk
2.15 KB
10/07/2024 04:00:12 AM
rw-r--r--
📁
contrib
-
10/07/2024 04:00:12 AM
rwxr-xr-x
📁
docs
-
10/07/2024 04:00:12 AM
rwxr-xr-x
📄
pyproject.toml
2.41 KB
10/07/2024 04:00:12 AM
rw-r--r--
📄
setup.cfg
135 bytes
10/07/2024 04:00:12 AM
rw-r--r--
📄
setup.py
372 bytes
10/07/2024 04:00:12 AM
rw-r--r--
📁
test
-
10/07/2024 04:00:12 AM
rwxr-xr-x
Editing: Makefile
Close
SHELL=/bin/bash test_deps: python -m pip install .[test] lint: for dir in $$(dirname */__init__.py); do ruff check $$dir; done for script in scripts/*[^cmd]; do if grep -q python $$script; then ruff check $$script; fi; done mypy --install-types --non-interactive argcomplete test: coverage run --source=argcomplete --omit=argcomplete/packages/_shlex.py ./test/test.py -v init_docs: cd docs; sphinx-quickstart docs: python -m pip install furo sphinx-copybutton sphinxext-opengraph sphinx-build docs docs/html install: clean python -m pip install build python -m build python -m pip install --upgrade $$(echo dist/*.whl)[test] clean: -rm -rf build dist -rm -rf *.egg-info .PHONY: test_deps lint test docs install clean include common.mk