From 0f4c7b04f7a190486b1e6b2041a399abc059ad6e Mon Sep 17 00:00:00 2001 From: Krateng Date: Tue, 10 Dec 2019 13:53:05 +0100 Subject: [PATCH] Changed distribution name --- README.md | 4 ++-- alpine_install.sh | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 571cc60..57d6027 100644 --- a/README.md +++ b/README.md @@ -22,7 +22,7 @@ Also neat: You can use your **custom artist or track images**. ## How to install -1) Download Maloja with the command `pip install maloja`. Make sure to use the correct python version (Use `pip3` if necessary). I've provided a simple .sh file to get Maloja going on an Alpine server (e.g. in Proxmox). +1) Download Maloja with the command `pip install malojaserver`. Make sure to use the correct python version (Use `pip3` if necessary). I've provided a simple .sh file to get Maloja going on an Alpine server (e.g. in Proxmox). 2) Start the server with @@ -44,7 +44,7 @@ Also neat: You can use your **custom artist or track images**. maloja restart maloja start -3) Update Maloja with `pip install maloja --upgrade --no-cache-dir` +3) Update Maloja with `pip install malojaserver --upgrade --no-cache-dir` 4) Various folders have `.info` files with more information on how to use their associated features. diff --git a/alpine_install.sh b/alpine_install.sh index 6fc34cf..75c9ac3 100644 --- a/alpine_install.sh +++ b/alpine_install.sh @@ -1,3 +1,3 @@ #!/usr/bin/env bash apk add python3 python3-dev gcc libxml2-dev libxslt-dev py3-pip libc-dev -pip3 install maloja +pip3 install malojaserver diff --git a/setup.py b/setup.py index 267f0d5..3d69495 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,7 @@ with open("README.md", "r") as fh: long_description = fh.read() setuptools.setup( - name=module.name, + name="malojaserver", version=".".join(str(n) for n in module.version), author=module.author["name"], author_email=module.author["email"],