URI: 
       tsetup.py tweaks - obelisk - Electrum server using libbitcoin as its backend
  HTML git clone https://git.parazyd.org/obelisk
   DIR Log
   DIR Files
   DIR Refs
   DIR README
   DIR LICENSE
       ---
   DIR commit 727e0e9c6b2613f8f63f824461fd381db14decf3
   DIR parent 422be936cf64c1b2603cf581fff701336ced68c7
  HTML Author: parazyd <parazyd@dyne.org>
       Date:   Fri, 16 Apr 2021 02:09:27 +0200
       
       setup.py tweaks
       
       Diffstat:
         M setup.py                            |      14 ++++++--------
       
       1 file changed, 6 insertions(+), 8 deletions(-)
       ---
   DIR diff --git a/setup.py b/setup.py
       t@@ -4,20 +4,18 @@ from setuptools import setup
        from obelisk.protocol import VERSION
        
        setup(
       -    name="Obelisk",
       +    name="obelisk",
            version=VERSION,
       -    packages=["obelisk"],
       -    package_dir={
       -        "obelisk": "obelisk",
       -    },
       -    install_requires=["pyzmq"],
            scripts=["obelisk/obelisk"],
       -    description="Electrum server using libbitcoin and zmq as backend",
       +    python_requires=">=3.7",
       +    install_requires=["pyzmq"],
       +    packages=["obelisk"],
       +    description="Obelisk Electrum server",
            author="Ivan J.",
            author_email="parazyd@dyne.org",
            license="AGPL-3",
            url="https://github.com/parazyd/obelisk",
       -    long_description="""Electrum server using libbitcoin and zmq as backend""",
       +    long_description="Electrum server using libbitcoin and zmq as backend",
            include_package_data=True,
            data_files=[("share/doc/obelisk", ["README.md", "res/obelisk.cfg"])],
        )