diff --git a/Dockerfile b/Dockerfile index 3c07683..20b6f65 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,19 +31,19 @@ RUN apk add --no-cache \ chmod +x yq && mv yq /usr/bin/yq -COPY requirements.txt /opt/mautrix-amp/requirements.txt -COPY optional-requirements.txt /opt/mautrix-amp/optional-requirements.txt -WORKDIR /opt/mautrix-amp +COPY requirements.txt /opt/mautrix-line/requirements.txt +COPY optional-requirements.txt /opt/mautrix-line/optional-requirements.txt +WORKDIR /opt/mautrix-line RUN apk add --virtual .build-deps python3-dev libffi-dev build-base \ && pip3 install -r requirements.txt -r optional-requirements.txt \ && apk del .build-deps -COPY . /opt/mautrix-amp +COPY . /opt/mautrix-line RUN apk add git && pip3 install .[e2be] && apk del git \ # This doesn't make the image smaller, but it's needed so that the `version` command works properly - && cp mautrix_amp/example-config.yaml . && rm -rf mautrix_amp + && cp mautrix_line/example-config.yaml . && rm -rf mautrix_line VOLUME /data ENV UID=1337 GID=1337 -CMD ["/opt/mautrix-amp/docker-run.sh"] +CMD ["/opt/mautrix-line/docker-run.sh"] diff --git a/README.md b/README.md index c945501..a009e45 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,4 @@ -# mautrix-amp -A very hacky Matrix-SMS bridge based on running Android Messages for Web in Puppeteer. -This project is temporary and will eventually be replaced by a separate Android app. +# mautrix-line +A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer -Matrix room: [`#maunium:maunium.net`](https://matrix.to/#/#maunium:maunium.net) +Matrix room: [`#mautrix-line:miscworks.net`](https://matrix.to/#/#matrix-line:miscworks.net) diff --git a/docker-run.sh b/docker-run.sh index 80f4ee3..98f46fe 100755 --- a/docker-run.sh +++ b/docker-run.sh @@ -2,10 +2,10 @@ # Define functions. function fixperms { - chown -R $UID:$GID /data /opt/mautrix-amp + chown -R $UID:$GID /data /opt/mautrix-line } -cd /opt/mautrix-amp +cd /opt/mautrix-line if [ ! -f /data/config.yaml ]; then cp example-config.yaml /data/config.yaml @@ -18,7 +18,7 @@ if [ ! -f /data/config.yaml ]; then fi if [ ! -f /data/registration.yaml ]; then - python3 -m mautrix_amp -g -c /data/config.yaml -r /data/registration.yaml + python3 -m mautrix_line -g -c /data/config.yaml -r /data/registration.yaml echo "Didn't find a registration file." echo "Generated one for you." echo "Copy that over to synapses app service directory." @@ -27,4 +27,4 @@ if [ ! -f /data/registration.yaml ]; then fi fixperms -exec su-exec $UID:$GID python3 -m mautrix_amp -c /data/config.yaml +exec su-exec $UID:$GID python3 -m mautrix_line -c /data/config.yaml diff --git a/mautrix_line/__main__.py b/mautrix_line/__main__.py index 40d76b4..63058ad 100644 --- a/mautrix_line/__main__.py +++ b/mautrix_line/__main__.py @@ -1,5 +1,5 @@ -# mautrix-amp - A very hacky Matrix-SMS bridge based on using Android Messages for Web in Puppeteer -# Copyright (C) 2020 Tulir Asokan +# mautrix-line - A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer +# Copyright (C) 2020-2021 Tulir Asokan, Andrew Ferrazzutti # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by @@ -31,12 +31,12 @@ from . import commands as _ class MessagesBridge(Bridge): module = "mautrix_line" - name = "mautrix-amp" - command = "python -m mautrix-amp" - description = ("A very hacky Matrix-SMS bridge based on using " - "Android Messages for Web in Puppeteer.") - repo_url = "https://github.com/tulir/mautrix-amp" - real_user_content_key = "net.maunium.amp.puppet" + name = "mautrix-line" + command = "python -m mautrix-line" + description = ("A very hacky Matrix-LINE bridge based on running " + "LINE's Chrome extension in Puppeteer.") + repo_url = "git://miscworks.net/mautrix-line" + real_user_content_key = "net.miscworks.line.puppet" version = version markdown_version = linkified_version config_class = Config diff --git a/mautrix_line/commands/auth.py b/mautrix_line/commands/auth.py index 7a55257..4ae4975 100644 --- a/mautrix_line/commands/auth.py +++ b/mautrix_line/commands/auth.py @@ -1,5 +1,5 @@ -# mautrix-amp - A very hacky Matrix-SMS bridge based on using Android Messages for Web in Puppeteer -# Copyright (C) 2020 Tulir Asokan +# mautrix-line - A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer +# Copyright (C) 2020-2021 Tulir Asokan, Andrew Ferrazzutti # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/mautrix_line/commands/conn.py b/mautrix_line/commands/conn.py index bdc79f6..8a9ac06 100644 --- a/mautrix_line/commands/conn.py +++ b/mautrix_line/commands/conn.py @@ -1,5 +1,5 @@ -# mautrix-amp - A very hacky Matrix-SMS bridge based on using Android Messages for Web in Puppeteer -# Copyright (C) 2020 Tulir Asokan +# mautrix-line - A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer +# Copyright (C) 2020-2021 Tulir Asokan, Andrew Ferrazzutti # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/mautrix_line/config.py b/mautrix_line/config.py index dc57e9e..a3cc78f 100644 --- a/mautrix_line/config.py +++ b/mautrix_line/config.py @@ -1,5 +1,5 @@ -# mautrix-amp - A very hacky Matrix-SMS bridge based on using Android Messages for Web in Puppeteer -# Copyright (C) 2020 Tulir Asokan +# mautrix-line - A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer +# Copyright (C) 2020-2021 Tulir Asokan, Andrew Ferrazzutti # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/mautrix_line/db/message.py b/mautrix_line/db/message.py index b214e23..4e93f48 100644 --- a/mautrix_line/db/message.py +++ b/mautrix_line/db/message.py @@ -1,5 +1,5 @@ -# mautrix-amp - A very hacky Matrix-SMS bridge based on using Android Messages for Web in Puppeteer -# Copyright (C) 2020 Tulir Asokan +# mautrix-line - A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer +# Copyright (C) 2020-2021 Tulir Asokan, Andrew Ferrazzutti # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/mautrix_line/db/portal.py b/mautrix_line/db/portal.py index ebe5915..175c54d 100644 --- a/mautrix_line/db/portal.py +++ b/mautrix_line/db/portal.py @@ -1,5 +1,5 @@ -# mautrix-amp - A very hacky Matrix-SMS bridge based on using Android Messages for Web in Puppeteer -# Copyright (C) 2020 Tulir Asokan +# mautrix-line - A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer +# Copyright (C) 2020-2021 Tulir Asokan, Andrew Ferrazzutti # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/mautrix_line/db/puppet.py b/mautrix_line/db/puppet.py index 41f129e..aa5f1f2 100644 --- a/mautrix_line/db/puppet.py +++ b/mautrix_line/db/puppet.py @@ -1,5 +1,5 @@ -# mautrix-amp - A very hacky Matrix-SMS bridge based on using Android Messages for Web in Puppeteer -# Copyright (C) 2020 Tulir Asokan +# mautrix-line - A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer +# Copyright (C) 2020-2021 Tulir Asokan, Andrew Ferrazzutti # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/mautrix_line/db/upgrade.py b/mautrix_line/db/upgrade.py index f3f531a..d330606 100644 --- a/mautrix_line/db/upgrade.py +++ b/mautrix_line/db/upgrade.py @@ -1,5 +1,5 @@ -# mautrix-amp - A very hacky Matrix-SMS bridge based on using Android Messages for Web in Puppeteer -# Copyright (C) 2020 Tulir Asokan +# mautrix-line - A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer +# Copyright (C) 2020-2021 Tulir Asokan, Andrew Ferrazzutti # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/mautrix_line/db/user.py b/mautrix_line/db/user.py index 55e4941..4015841 100644 --- a/mautrix_line/db/user.py +++ b/mautrix_line/db/user.py @@ -1,5 +1,5 @@ -# mautrix-amp - A very hacky Matrix-SMS bridge based on using Android Messages for Web in Puppeteer -# Copyright (C) 2020 Tulir Asokan +# mautrix-line - A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer +# Copyright (C) 2020-2021 Tulir Asokan, Andrew Ferrazzutti # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/mautrix_line/example-config.yaml b/mautrix_line/example-config.yaml index 57bbf13..61d708f 100644 --- a/mautrix_line/example-config.yaml +++ b/mautrix_line/example-config.yaml @@ -139,7 +139,7 @@ puppeteer: # Either unix or tcp type: unix # Only for type: unix - path: /var/run/mautrix-amp/puppet.sock + path: /var/run/mautrix-line/puppet.sock # Only for type: tcp host: localhost port: 29395 @@ -152,7 +152,7 @@ logging: version: 1 formatters: colored: - (): mautrix_amp.util.ColorFormatter + (): mautrix_line.util.ColorFormatter format: "[%(asctime)s] [%(levelname)s@%(name)s] %(message)s" normal: format: "[%(asctime)s] [%(levelname)s@%(name)s] %(message)s" @@ -160,7 +160,7 @@ logging: file: class: logging.handlers.RotatingFileHandler formatter: normal - filename: ./mautrix-amp.log + filename: ./mautrix-line.log maxBytes: 10485760 backupCount: 10 console: diff --git a/mautrix_line/get_version.py b/mautrix_line/get_version.py index 1c740d8..b8d0524 100644 --- a/mautrix_line/get_version.py +++ b/mautrix_line/get_version.py @@ -19,7 +19,7 @@ def run(cmd): if os.path.exists(".git") and shutil.which("git"): try: git_revision = run(["git", "rev-parse", "HEAD"]).strip().decode("ascii") - git_revision_url = f"https://github.com/tulir/mautrix-amp/commit/{git_revision}" + git_revision_url = f"git://miscworks.net/mautrix-line/commit/{git_revision}" git_revision = git_revision[:8] except (subprocess.SubprocessError, OSError): git_revision = "unknown" diff --git a/mautrix_line/matrix.py b/mautrix_line/matrix.py index 4c5e8ea..dff3fe1 100644 --- a/mautrix_line/matrix.py +++ b/mautrix_line/matrix.py @@ -1,5 +1,5 @@ -# mautrix-amp - A very hacky Matrix-SMS bridge based on using Android Messages for Web in Puppeteer -# Copyright (C) 2020 Tulir Asokan +# mautrix-line - A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer +# Copyright (C) 2020-2021 Tulir Asokan, Andrew Ferrazzutti # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/mautrix_line/portal.py b/mautrix_line/portal.py index ce0b751..39b77dc 100644 --- a/mautrix_line/portal.py +++ b/mautrix_line/portal.py @@ -1,5 +1,5 @@ -# mautrix-amp - A very hacky Matrix-SMS bridge based on using Android Messages for Web in Puppeteer -# Copyright (C) 2020 Tulir Asokan +# mautrix-line - A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer +# Copyright (C) 2020-2021 Tulir Asokan, Andrew Ferrazzutti # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/mautrix_line/puppet.py b/mautrix_line/puppet.py index da47cbe..b5f219d 100644 --- a/mautrix_line/puppet.py +++ b/mautrix_line/puppet.py @@ -1,5 +1,5 @@ -# mautrix-amp - A very hacky Matrix-SMS bridge based on using Android Messages for Web in Puppeteer -# Copyright (C) 2020 Tulir Asokan +# mautrix-line - A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer +# Copyright (C) 2020-2021 Tulir Asokan, Andrew Ferrazzutti # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/mautrix_line/rpc/client.py b/mautrix_line/rpc/client.py index 12b243e..2413284 100644 --- a/mautrix_line/rpc/client.py +++ b/mautrix_line/rpc/client.py @@ -1,5 +1,5 @@ -# mautrix-amp - A very hacky Matrix-SMS bridge based on using Android Messages for Web in Puppeteer -# Copyright (C) 2020 Tulir Asokan +# mautrix-line - A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer +# Copyright (C) 2020-2021 Tulir Asokan, Andrew Ferrazzutti # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/mautrix_line/rpc/rpc.py b/mautrix_line/rpc/rpc.py index 077e0ba..8dc79dc 100644 --- a/mautrix_line/rpc/rpc.py +++ b/mautrix_line/rpc/rpc.py @@ -1,5 +1,5 @@ -# mautrix-amp - A very hacky Matrix-SMS bridge based on using Android Messages for Web in Puppeteer -# Copyright (C) 2020 Tulir Asokan +# mautrix-line - A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer +# Copyright (C) 2020-2021 Tulir Asokan, Andrew Ferrazzutti # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/mautrix_line/rpc/types.py b/mautrix_line/rpc/types.py index cf8138a..61933e2 100644 --- a/mautrix_line/rpc/types.py +++ b/mautrix_line/rpc/types.py @@ -1,5 +1,5 @@ -# mautrix-amp - A very hacky Matrix-SMS bridge based on using Android Messages for Web in Puppeteer -# Copyright (C) 2020 Tulir Asokan +# mautrix-line - A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer +# Copyright (C) 2020-2021 Tulir Asokan, Andrew Ferrazzutti # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/mautrix_line/user.py b/mautrix_line/user.py index 2584fcc..5f6c7bb 100644 --- a/mautrix_line/user.py +++ b/mautrix_line/user.py @@ -1,5 +1,5 @@ -# mautrix-amp - A very hacky Matrix-SMS bridge based on using Android Messages for Web in Puppeteer -# Copyright (C) 2020 Tulir Asokan +# mautrix-line - A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer +# Copyright (C) 2020-2021 Tulir Asokan, Andrew Ferrazzutti # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/mautrix_line/util/color_log.py b/mautrix_line/util/color_log.py index 29e30f3..6255d8b 100644 --- a/mautrix_line/util/color_log.py +++ b/mautrix_line/util/color_log.py @@ -1,5 +1,5 @@ -# mautrix-amp - A very hacky Matrix-SMS bridge based on using Android Messages for Web in Puppeteer -# Copyright (C) 2020 Tulir Asokan +# mautrix-line - A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer +# Copyright (C) 2020-2021 Tulir Asokan, Andrew Ferrazzutti # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/mautrix_line/web/provisioning_api.py b/mautrix_line/web/provisioning_api.py index e3da47e..0a89e5a 100644 --- a/mautrix_line/web/provisioning_api.py +++ b/mautrix_line/web/provisioning_api.py @@ -1,5 +1,5 @@ -# mautrix-amp - A very hacky Matrix-SMS bridge based on using Android Messages for Web in Puppeteer -# Copyright (C) 2020 Tulir Asokan +# mautrix-line - A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer +# Copyright (C) 2020-2021 Tulir Asokan, Andrew Ferrazzutti # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU Affero General Public License as published by diff --git a/puppet/Dockerfile b/puppet/Dockerfile index e9bc1ff..e00d63b 100644 --- a/puppet/Dockerfile +++ b/puppet/Dockerfile @@ -7,11 +7,11 @@ RUN echo $'\ RUN apk add --no-cache chromium@edge -WORKDIR /opt/mautrix-amp/puppet -RUN chown node:node /opt/mautrix-amp/puppet +WORKDIR /opt/mautrix-line/puppet +RUN chown node:node /opt/mautrix-line/puppet USER node COPY package.json yarn.lock ./ RUN yarn --production && rm -rf node_modules/puppeteer/.local-chromium -COPY . /opt/mautrix-amp/puppet +COPY . /opt/mautrix-line/puppet CMD ["yarn", "start", "--config", "/data/config.json", "--browser", "/usr/lib/chromium/chrome", "--no-sandbox"] diff --git a/puppet/example-config.json b/puppet/example-config.json index 341e7ee..e5d7bae 100644 --- a/puppet/example-config.json +++ b/puppet/example-config.json @@ -1,7 +1,7 @@ { "listen": { "type": "unix", - "path": "/var/run/mautrix-amp/puppet.sock" + "path": "/var/run/mautrix-line/puppet.sock" }, "profile_dir": "./profiles", "disable_debug": true, diff --git a/puppet/package.json b/puppet/package.json index 25fa99f..ff53078 100644 --- a/puppet/package.json +++ b/puppet/package.json @@ -1,16 +1,16 @@ { - "name": "mautrix-amp-puppeteer", + "name": "mautrix-line-puppeteer", "version": "0.1.0", - "description": "Puppeteer module for mautrix-amp", + "description": "Puppeteer module for mautrix-line", "repository": { "type": "git", - "url": "git+https://mau.dev/tulir/mautrix-amp.git" + "url": "git://miscworks.net/mautrix-line.git" }, "type": "module", "main": "src/main.js", - "author": "Tulir Asokan ", + "author": "Andrew Ferrazzutti ", "license": "AGPL-3.0-or-later", - "homepage": "https://mau.dev/tulir/mautrix-amp", + "homepage": "https://miscworks.net/dir/mautrix-line", "scripts": { "start": "node ./src/main.js" }, diff --git a/puppet/src/api.js b/puppet/src/api.js index df7058a..33e8f3a 100644 --- a/puppet/src/api.js +++ b/puppet/src/api.js @@ -1,5 +1,5 @@ -// mautrix-amp - A very hacky Matrix-SMS bridge based on using Android Messages for Web in Puppeteer -// Copyright (C) 2020 Tulir Asokan +// mautrix-line - A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer +// Copyright (C) 2020-2021 Tulir Asokan, Andrew Ferrazzutti // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by diff --git a/puppet/src/client.js b/puppet/src/client.js index 978f0a6..be3ac56 100644 --- a/puppet/src/client.js +++ b/puppet/src/client.js @@ -1,5 +1,5 @@ -// mautrix-amp - A very hacky Matrix-SMS bridge based on using Android Messages for Web in Puppeteer -// Copyright (C) 2020 Tulir Asokan +// mautrix-line - A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer +// Copyright (C) 2020-2021 Tulir Asokan, Andrew Ferrazzutti // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by diff --git a/puppet/src/contentscript.js b/puppet/src/contentscript.js index c81612a..dfcc059 100644 --- a/puppet/src/contentscript.js +++ b/puppet/src/contentscript.js @@ -1,5 +1,5 @@ -// mautrix-amp - A very hacky Matrix-SMS bridge based on using Android Messages for Web in Puppeteer -// Copyright (C) 2020 Tulir Asokan +// mautrix-line - A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer +// Copyright (C) 2020-2021 Tulir Asokan, Andrew Ferrazzutti // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by diff --git a/puppet/src/main.js b/puppet/src/main.js index 71a8dac..d4f6634 100644 --- a/puppet/src/main.js +++ b/puppet/src/main.js @@ -1,5 +1,5 @@ -// mautrix-amp - A very hacky Matrix-SMS bridge based on using Android Messages for Web in Puppeteer -// Copyright (C) 2020 Tulir Asokan +// mautrix-line - A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer +// Copyright (C) 2020-2021 Tulir Asokan, Andrew Ferrazzutti // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by diff --git a/puppet/src/puppet.js b/puppet/src/puppet.js index 038b7ee..15226e2 100644 --- a/puppet/src/puppet.js +++ b/puppet/src/puppet.js @@ -1,5 +1,5 @@ -// mautrix-amp - A very hacky Matrix-SMS bridge based on using Android Messages for Web in Puppeteer -// Copyright (C) 2020 Tulir Asokan +// mautrix-line - A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer +// Copyright (C) 2020-2021 Tulir Asokan, Andrew Ferrazzutti // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by diff --git a/puppet/src/taskqueue.js b/puppet/src/taskqueue.js index bf97a9a..af9413e 100644 --- a/puppet/src/taskqueue.js +++ b/puppet/src/taskqueue.js @@ -1,5 +1,5 @@ -// mautrix-amp - A very hacky Matrix-SMS bridge based on using Android Messages for Web in Puppeteer -// Copyright (C) 2020 Tulir Asokan +// mautrix-line - A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer +// Copyright (C) 2020-2021 Tulir Asokan, Andrew Ferrazzutti // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by diff --git a/puppet/src/util.js b/puppet/src/util.js index 9362dc0..a8bb04d 100644 --- a/puppet/src/util.js +++ b/puppet/src/util.js @@ -1,5 +1,5 @@ -// mautrix-amp - A very hacky Matrix-SMS bridge based on using Android Messages for Web in Puppeteer -// Copyright (C) 2020 Tulir Asokan +// mautrix-line - A very hacky Matrix-LINE bridge based on running LINE's Chrome extension in Puppeteer +// Copyright (C) 2020-2021 Tulir Asokan, Andrew Ferrazzutti // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by diff --git a/setup.py b/setup.py index 07f83de..6d5d65d 100644 --- a/setup.py +++ b/setup.py @@ -35,7 +35,7 @@ linkified_version = {linkified_version!r} setuptools.setup( name="mautrix-line", version=version, - url="https://github.com/tulir/mautrix-amp", + url="git://miscworks.net/mautrix-line", author="Tulir Asokan", author_email="tulir@maunium.net",