dotpkg


Namedotpkg JSON
Version 0.1.0 PyPI version JSON
download
home_page
SummaryPackage manager for your dotfiles
upload_time2023-08-23 17:04:08
maintainer
docs_urlNone
author
requires_python>=3.9
licenseMIT License Copyright (c) 2022 fwcd Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
keywords package-manager dotfiles
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Dotpkg

[![PyPI](https://img.shields.io/pypi/v/dotpkg)](https://pypi.org/project/dotpkg)
[![Typecheck](https://github.com/fwcd/dotpkg/actions/workflows/typecheck.yml/badge.svg)](https://github.com/fwcd/dotpkg/actions/workflows/typecheck.yml)

A package manager for your dotfiles.

## Why Dotpkg?

- **Lightweight**: Pure Python 3.9 with no dependencies
- **JSON-configurable**: Easy to write, includes a schema for code completion
- **Cross-platform**: Runs on Linux, macOS and Windows
- **Flexible**: Configurable target locations, ignore lists, rename rules and more

## Usage

First make sure to have Python 3.9+ installed. To create a dotfile package, set up a folder with the following layout (the top-level folder is assumed to be some folder, e.g. a Git repo, where you store all of your dotfiles):

```
dotfiles
└─my-package
  ├─dotpkg.json
  ├─.some-dotfile-one
  ├─.some-dotfile-two
    ...
```

A minimal `dotpkg.json` is structured as follows:

```json
{
  "name": "my-package",
  "description": "Description of my package"
}
```

Navigating into `dotfiles` and running `dotpkg install my-package` will then symlink `.some-dotfile-one` and `.some-dotfile-two` into your home directory.

> Note that when running on Windows, unprivileged users might not be able to create symlinks, a feature that `dotpkg` relies on. Enabling `Developer Mode` in your Windows Settings (from an administrator account) will permit this. Also, you may need to substitute `python3 [path/to/dotpkg]` for `dotpkg` since Windows does not support Unix-style shebangs.

Optionally, you can specify keys such as `requiresOnPath` too, which will only install the package if a given binary is found on your `PATH` (useful if your config targets some application). Additionally, `targetDir` configures the search path to symlink the files into some other directory than your home (`dotpkg` will use the first directory that exists, this is useful to cross-platform packages).

For example, a package that manages configurations for Visual Studio Code could look like this:

```json
{
  "name": "vscode",
  "description": "Visual Studio Code settings and keybindings",
  "requiresOnPath": ["code"],
  "targetDir": [
    "${home}/.config/Code",
    "${home}/Library/Application Support/Code",
    "${home}/AppData/Roaming/Code"
  ]
}
```

A full JSON schema for the `dotpkg.json` manifests can be found [here](dotpkg.schema.json).

> Note that you can add the schema to your VSCode settings to get autocompletion in `dotpkg.json` files by specifying `json.schemas`:

```json
{
  "json.schemas": [
    {
      "fileMatch": ["dotpkg.json"],
      "url": "https://raw.githubusercontent.com/fwcd/dotpkg/main/dotpkg.schema.json"
    }
  ]
}
```

Alternatively, you can specify the schema individually in each `dotpkg.json`:

```json
{
  "$schema": "https://raw.githubusercontent.com/fwcd/dotpkg/main/dotpkg.schema.json"
}
```

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "dotpkg",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "",
    "keywords": "package-manager,dotfiles",
    "author": "",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/2e/8a/c2700cf12618f3df958faeb3cf8e068b075745a8525b4feeedc14e3960d4/dotpkg-0.1.0.tar.gz",
    "platform": null,
    "description": "# Dotpkg\n\n[![PyPI](https://img.shields.io/pypi/v/dotpkg)](https://pypi.org/project/dotpkg)\n[![Typecheck](https://github.com/fwcd/dotpkg/actions/workflows/typecheck.yml/badge.svg)](https://github.com/fwcd/dotpkg/actions/workflows/typecheck.yml)\n\nA package manager for your dotfiles.\n\n## Why Dotpkg?\n\n- **Lightweight**: Pure Python 3.9 with no dependencies\n- **JSON-configurable**: Easy to write, includes a schema for code completion\n- **Cross-platform**: Runs on Linux, macOS and Windows\n- **Flexible**: Configurable target locations, ignore lists, rename rules and more\n\n## Usage\n\nFirst make sure to have Python 3.9+ installed. To create a dotfile package, set up a folder with the following layout (the top-level folder is assumed to be some folder, e.g. a Git repo, where you store all of your dotfiles):\n\n```\ndotfiles\n\u2514\u2500my-package\n  \u251c\u2500dotpkg.json\n  \u251c\u2500.some-dotfile-one\n  \u251c\u2500.some-dotfile-two\n    ...\n```\n\nA minimal `dotpkg.json` is structured as follows:\n\n```json\n{\n  \"name\": \"my-package\",\n  \"description\": \"Description of my package\"\n}\n```\n\nNavigating into `dotfiles` and running `dotpkg install my-package` will then symlink `.some-dotfile-one` and `.some-dotfile-two` into your home directory.\n\n> Note that when running on Windows, unprivileged users might not be able to create symlinks, a feature that `dotpkg` relies on. Enabling `Developer Mode` in your Windows Settings (from an administrator account) will permit this. Also, you may need to substitute `python3 [path/to/dotpkg]` for `dotpkg` since Windows does not support Unix-style shebangs.\n\nOptionally, you can specify keys such as `requiresOnPath` too, which will only install the package if a given binary is found on your `PATH` (useful if your config targets some application). Additionally, `targetDir` configures the search path to symlink the files into some other directory than your home (`dotpkg` will use the first directory that exists, this is useful to cross-platform packages).\n\nFor example, a package that manages configurations for Visual Studio Code could look like this:\n\n```json\n{\n  \"name\": \"vscode\",\n  \"description\": \"Visual Studio Code settings and keybindings\",\n  \"requiresOnPath\": [\"code\"],\n  \"targetDir\": [\n    \"${home}/.config/Code\",\n    \"${home}/Library/Application Support/Code\",\n    \"${home}/AppData/Roaming/Code\"\n  ]\n}\n```\n\nA full JSON schema for the `dotpkg.json` manifests can be found [here](dotpkg.schema.json).\n\n> Note that you can add the schema to your VSCode settings to get autocompletion in `dotpkg.json` files by specifying `json.schemas`:\n\n```json\n{\n  \"json.schemas\": [\n    {\n      \"fileMatch\": [\"dotpkg.json\"],\n      \"url\": \"https://raw.githubusercontent.com/fwcd/dotpkg/main/dotpkg.schema.json\"\n    }\n  ]\n}\n```\n\nAlternatively, you can specify the schema individually in each `dotpkg.json`:\n\n```json\n{\n  \"$schema\": \"https://raw.githubusercontent.com/fwcd/dotpkg/main/dotpkg.schema.json\"\n}\n```\n",
    "bugtrack_url": null,
    "license": "MIT License  Copyright (c) 2022 fwcd  Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the \"Software\"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:  The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. ",
    "summary": "Package manager for your dotfiles",
    "version": "0.1.0",
    "project_urls": {
        "Homepage": "https://github.com/fwcd/dotpkg",
        "Repository": "https://github.com/fwcd/dotpkg"
    },
    "split_keywords": [
        "package-manager",
        "dotfiles"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "2e8ac2700cf12618f3df958faeb3cf8e068b075745a8525b4feeedc14e3960d4",
                "md5": "55120c064afc750b64a872f3ce3a3f71",
                "sha256": "a8225c840512caa6f7e94edb7ee85f8d28a6a9ef726fc5a87d2d31f75d425677"
            },
            "downloads": -1,
            "filename": "dotpkg-0.1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "55120c064afc750b64a872f3ce3a3f71",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 11562,
            "upload_time": "2023-08-23T17:04:08",
            "upload_time_iso_8601": "2023-08-23T17:04:08.078259Z",
            "url": "https://files.pythonhosted.org/packages/2e/8a/c2700cf12618f3df958faeb3cf8e068b075745a8525b4feeedc14e3960d4/dotpkg-0.1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-08-23 17:04:08",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "fwcd",
    "github_project": "dotpkg",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "lcname": "dotpkg"
}
        
Elapsed time: 0.11234s