From 270a01e5ad699d6c895d3bd4d0e0e739d8b40758 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Mart=C3=ADnez=20Gonz=C3=A1lez?= Date: Thu, 11 Jan 2024 14:46:05 -0500 Subject: [PATCH] Add setyp.py to fix install problem Gbasis has three folders in its main level and pypi gets lost during the the discovery of top-level packages during the installation. With this the package directory is set. --- setup.py | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 00000000..910994f4 --- /dev/null +++ b/setup.py @@ -0,0 +1,8 @@ +from setuptools import setup + +setup( + name='your_package', + version='0.0', + packages=['gbasis'], + # other setup parameters... +)