From 8b9247bfc51dd415490d0f599b6693c8edf491c6 Mon Sep 17 00:00:00 2001 From: rlaphoenix Date: Mon, 6 Feb 2023 02:55:22 +0000 Subject: [PATCH] Fix the organization name across the project Sadly `devine` was not available. --- README.md | 10 +++++----- devine/core/__main__.py | 2 +- pyproject.toml | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index 30f0804..bf050ed 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,13 @@

- Devine + Devine
Open-Source Movie, TV, and Music Downloading Solution

- - Build status + + Build status Python version @@ -125,7 +125,7 @@ easily rebase your fork to that commit to update. However, please make sure you look at changes between each version before rebasing and resolve any breaking changes and deprecations when rebasing to a new version. -1. Fork the project with `git` or GitHub [(fork)](https://github.com/devine/devine/fork). +1. Fork the project with `git` or GitHub [(fork)](https://github.com/devine-dl/devine/fork). 2. Head inside the root `devine` directory and create a `services` directory. 3. Within that `services` folder you may install or create service code. @@ -240,7 +240,7 @@ If you start to get sick of putting something in your CLI call, then I recommend The following steps are instructions on downloading, preparing, and running the code under a [Poetry] environment. You can skip steps 3-5 with a simple `pip install .` call instead, but you miss out on a wide array of benefits. -1. `git clone https://github.com/devine/devine` +1. `git clone https://github.com/devine-dl/devine` 2. `cd devine` 3. (optional) `poetry config virtualenvs.in-project true` 4. `poetry install` diff --git a/devine/core/__main__.py b/devine/core/__main__.py index cef44da..87c2265 100644 --- a/devine/core/__main__.py +++ b/devine/core/__main__.py @@ -20,7 +20,7 @@ def main(version: bool, debug: bool) -> None: log.info(f"Devine version {__version__} Copyright (c) 2019-{datetime.now().year} rlaphoenix") log.info("Convenient Widevine-DRM Downloader and Decrypter.") - log.info("https://github.com/devine/devine") + log.info("https://github.com/devine-dl/devine") if version: return diff --git a/pyproject.toml b/pyproject.toml index f32ed74..06591a8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -9,8 +9,8 @@ description = 'Open-Source Movie, TV, and Music Downloading Solution' license = 'GPL-3.0-only' authors = ['rlaphoenix '] readme = 'README.md' -homepage = 'https://github.com/devine/devine' -repository = 'https://github.com/devine/devine' +homepage = 'https://github.com/devine-dl/devine' +repository = 'https://github.com/devine-dl/devine' keywords = ['widevine', 'drm', 'downloader'] classifiers = [ 'Development Status :: 4 - Beta',