Skip to content
This repository has been archived by the owner on Oct 31, 2023. It is now read-only.

Make module installable using pip, even from GH #235

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file added dpr/indexer/__init__.py
Empty file.
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand All @@ -21,6 +21,8 @@
"Programming Language :: Python :: 3.6",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
py_modules=[''],
packages=find_packages(),
long_description=readme,
long_description_content_type="text/markdown",
setup_requires=[
Expand Down