We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ffc3360 commit e445a5dCopy full SHA for e445a5d
README.md
@@ -89,7 +89,7 @@ Install the Python requirements listed in `requirements.txt`.
89
```bash
90
git clone https://github.com/RedisVentures/data-loader.git
91
cd redisvl
92
-pip install -e .
+pip install .
93
```
94
95
### Creating Input Data
setup.py
@@ -1,4 +1,4 @@
1
-from setuptools import setup
+from setuptools import setup, find_packages
2
3
# function to read in requirements.txt to into a python list
4
def read_requirements():
@@ -19,7 +19,7 @@ def read_dev_requirements():
19
python_requires=">=3.6",
20
install_requires=read_requirements(),
21
extras_require={"dev": read_dev_requirements()},
22
- packages=["redisvl"],
+ packages=find_packages(),
23
zip_safe=False,
24
entry_points={
25
"console_scripts": [
0 commit comments