URI: 
       tsetup.py - 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
       ---
       tsetup.py (612B)
       ---
            1 #!/usr/bin/env python3
            2 from setuptools import setup
            3 
            4 from obelisk.protocol import VERSION
            5 
            6 setup(
            7     name="obelisk",
            8     version=VERSION,
            9     scripts=["obelisk/obelisk"],
           10     python_requires=">=3.7",
           11     install_requires=["pyzmq"],
           12     packages=["obelisk"],
           13     description="Obelisk Electrum server",
           14     author="Ivan J.",
           15     author_email="parazyd@dyne.org",
           16     license="AGPL-3",
           17     url="https://github.com/parazyd/obelisk",
           18     long_description="Electrum server using libbitcoin and zmq as backend",
           19     include_package_data=True,
           20     data_files=[("share/doc/obelisk", ["README.md", "res/obelisk.cfg"])],
           21 )