commit 727e0e9c6b2613f8f63f824461fd381db14decf3
parent 422be936cf64c1b2603cf581fff701336ced68c7
Author: parazyd <parazyd@dyne.org>
Date: Fri, 16 Apr 2021 02:09:27 +0200
setup.py tweaks
Diffstat:
1 file changed, 6 insertions(+), 8 deletions(-)
diff --git a/setup.py b/setup.py
@@ -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"])],
)