├── .coveragerc ├── .github └── workflows │ ├── build.yaml │ ├── codeql.yaml │ └── pypi.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── CONTRIBUTING.md ├── LICENSE ├── MANIFEST.in ├── README.md ├── demo.gif ├── dtags ├── __init__.py ├── commands │ ├── __init__.py │ ├── activate.py │ ├── d.py │ ├── run.py │ ├── tag.py │ ├── tags.py │ └── untag.py ├── commons.py ├── exceptions.py ├── files.py └── style.py ├── pyproject.toml ├── setup.cfg ├── setup.py └── tests ├── __init__.py ├── conftest.py ├── helpers.py ├── test_commands.py ├── test_commons.py └── test_style.py /.coveragerc: -------------------------------------------------------------------------------- 1 | [run] 2 | source=dtags 3 | -------------------------------------------------------------------------------- /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joowani/dtags/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.github/workflows/codeql.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joowani/dtags/HEAD/.github/workflows/codeql.yaml -------------------------------------------------------------------------------- /.github/workflows/pypi.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joowani/dtags/HEAD/.github/workflows/pypi.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joowani/dtags/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joowani/dtags/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joowani/dtags/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joowani/dtags/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- 1 | include README.md LICENSE 2 | prune tests 3 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joowani/dtags/HEAD/README.md -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joowani/dtags/HEAD/demo.gif -------------------------------------------------------------------------------- /dtags/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dtags/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dtags/commands/activate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joowani/dtags/HEAD/dtags/commands/activate.py -------------------------------------------------------------------------------- /dtags/commands/d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joowani/dtags/HEAD/dtags/commands/d.py -------------------------------------------------------------------------------- /dtags/commands/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joowani/dtags/HEAD/dtags/commands/run.py -------------------------------------------------------------------------------- /dtags/commands/tag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joowani/dtags/HEAD/dtags/commands/tag.py -------------------------------------------------------------------------------- /dtags/commands/tags.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joowani/dtags/HEAD/dtags/commands/tags.py -------------------------------------------------------------------------------- /dtags/commands/untag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joowani/dtags/HEAD/dtags/commands/untag.py -------------------------------------------------------------------------------- /dtags/commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joowani/dtags/HEAD/dtags/commons.py -------------------------------------------------------------------------------- /dtags/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joowani/dtags/HEAD/dtags/exceptions.py -------------------------------------------------------------------------------- /dtags/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joowani/dtags/HEAD/dtags/files.py -------------------------------------------------------------------------------- /dtags/style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joowani/dtags/HEAD/dtags/style.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joowani/dtags/HEAD/pyproject.toml -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joowani/dtags/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joowani/dtags/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joowani/dtags/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joowani/dtags/HEAD/tests/helpers.py -------------------------------------------------------------------------------- /tests/test_commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joowani/dtags/HEAD/tests/test_commands.py -------------------------------------------------------------------------------- /tests/test_commons.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joowani/dtags/HEAD/tests/test_commons.py -------------------------------------------------------------------------------- /tests/test_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joowani/dtags/HEAD/tests/test_style.py --------------------------------------------------------------------------------