From df5d84ed4498979ca27e199bc0f0d2f990b1949e Mon Sep 17 00:00:00 2001 From: Syats Date: Mon, 3 Oct 2022 12:37:27 +0200 Subject: [PATCH 1/4] Explicitly added py_modules in setup.py (#1) --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index f458fd0b..5a8820ea 100644 --- a/setup.py +++ b/setup.py @@ -21,6 +21,7 @@ "Programming Language :: Python :: 3.6", "Topic :: Scientific/Engineering :: Artificial Intelligence", ], + py_modules=[], long_description=readme, long_description_content_type="text/markdown", setup_requires=[ From bdb75f97c1ddf52081d407e3321a748a0f747105 Mon Sep 17 00:00:00 2001 From: Syats Date: Tue, 4 Oct 2022 14:25:34 +0200 Subject: [PATCH 2/4] Fix allow pip installation (#2) * Explicitly added py_modules in setup.py * Update setup.py --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 5a8820ea..5f300db3 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ "Programming Language :: Python :: 3.6", "Topic :: Scientific/Engineering :: Artificial Intelligence", ], - py_modules=[], + py_modules=["dpr"], long_description=readme, long_description_content_type="text/markdown", setup_requires=[ From 97779ce736c098782110e225c9ea31eab8b450aa Mon Sep 17 00:00:00 2001 From: Syats Date: Tue, 4 Oct 2022 14:42:16 +0200 Subject: [PATCH 3/4] Fix allow pip installation (#3) * Explicitly added py_modules in setup.py * Update setup.py * Update setup.py --- setup.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/setup.py b/setup.py index 5f300db3..88be4281 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ # LICENSE file in the root directory of this source tree. -from setuptools import setup +from setuptools import setup, find_packages with open("README.md") as f: readme = f.read() @@ -21,7 +21,8 @@ "Programming Language :: Python :: 3.6", "Topic :: Scientific/Engineering :: Artificial Intelligence", ], - py_modules=["dpr"], + py_modules=[''], + packages=find_packages(), long_description=readme, long_description_content_type="text/markdown", setup_requires=[ From 0b233ecc98b20b79727687629d0dd51516fac855 Mon Sep 17 00:00:00 2001 From: syats Date: Tue, 4 Oct 2022 14:56:24 +0200 Subject: [PATCH 4/4] added init to indexers package --- dpr/indexer/__init__.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 dpr/indexer/__init__.py diff --git a/dpr/indexer/__init__.py b/dpr/indexer/__init__.py new file mode 100644 index 00000000..e69de29b