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 db80d9d commit 53ab4a2Copy full SHA for 53ab4a2
README.md
@@ -6,7 +6,7 @@ A framework for composing retrieval models and language models into powerful pip
6
7
## Installation
8
9
-```pip install .```
+```pip install dsp-ml```
10
11
## 🏃 Getting Started
12
setup.py
@@ -1,14 +1,14 @@
1
-from setuptools import setup
+from setuptools import setup, find_packages
2
3
setup(
4
- name="dsp",
5
- version="0.1.0",
+ name="dsp-ml",
+ version="0.1.1",
description="Demonstrate-Search-Predict",
url="https://github.com/stanfordnlp/dsp",
author="Omar Khattab",
author_email="okhattab@stanford.edu",
license="MIT License",
- packages=["dsp"],
+ packages=find_packages(),
python_requires='>=3.8',
13
install_requires=[
14
"backoff",
0 commit comments