Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at devShellTools-shell 27 lines 743 B view raw
1From f4a612e1c8501d2a1683003bb121daa6d46155ca Mon Sep 17 00:00:00 2001 2From: Maximilian Bosch <maximilian@mbosch.me> 3Date: Sun, 29 Nov 2020 20:45:16 +0100 4Subject: [PATCH 1/2] Re-add entrypoint 5 6--- 7 setup.py | 6 ++++++ 8 1 file changed, 6 insertions(+) 9 10diff --git a/setup.py b/setup.py 11index ea001e5..e1ca536 100644 12--- a/setup.py 13+++ b/setup.py 14@@ -54,6 +54,12 @@ setuptools.setup( 15 extras_require=extras_require, 16 python_requires="~=3.7", 17 18+ entry_points={ 19+ 'console_scripts': [ 20+ 'mautrix-telegram=mautrix_telegram.__main__:main' 21+ ] 22+ }, 23+ 24 classifiers=[ 25 "Development Status :: 4 - Beta", 26 "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)", 27