From 8b1d642bb25a94f0724c202def3f72516fbd6b41 Mon Sep 17 00:00:00 2001 From: scgbckbone Date: Tue, 6 Aug 2024 10:49:12 +0200 Subject: [PATCH] cope with setuptools >= 61.0.0 --- .gitignore | 2 ++ setup.py | 16 +++++++++++++++- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 52fd4b9..9df8c59 100644 --- a/.gitignore +++ b/.gitignore @@ -12,3 +12,5 @@ pp history.yaml bunker.egg-info/ + +.idea \ No newline at end of file diff --git a/setup.py b/setup.py index 15df212..a3aec80 100644 --- a/setup.py +++ b/setup.py @@ -14,6 +14,21 @@ setup( name='bunker', version='0.1', + py_modules=[ + "chain", + "chrono", + "conn", + "main", + "make_captcha", + "objstruct", + "persist", + "policy", + "status", + "torsion", + "utils", + "version", + "webapp", + ], license='MIT+CC', python_requires='>=3.7.0', url='https://github.com/Coldcard/ckbunker', @@ -43,5 +58,4 @@ 'Operating System :: Microsoft :: Windows', 'Operating System :: MacOS :: MacOS X', ], - packages=[], )