Skip to content

Commit 84665ff

Browse files
authored
Merge pull request #3 from stanfordnlp/release_0.1.1
Update Python package info, release 0.1.1
2 parents db80d9d + 73facc0 commit 84665ff

File tree

3 files changed

+26
-5
lines changed

3 files changed

+26
-5
lines changed

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
MIT License
2+
3+
Copyright (c) 2023 Stanford Future Data Systems
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A framework for composing retrieval models and language models into powerful pip
66

77
## Installation
88

9-
```pip install .```
9+
```pip install dsp-ml```
1010

1111
## 🏃 Getting Started
1212

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1-
from setuptools import setup
1+
from setuptools import setup, find_packages
22

33
setup(
4-
name="dsp",
5-
version="0.1.0",
4+
name="dsp-ml",
5+
version="0.1.1",
66
description="Demonstrate-Search-Predict",
77
url="https://github.com/stanfordnlp/dsp",
88
author="Omar Khattab",
99
author_email="okhattab@stanford.edu",
1010
license="MIT License",
11-
packages=["dsp"],
11+
packages=find_packages(),
1212
python_requires='>=3.8',
1313
install_requires=[
1414
"backoff",

0 commit comments

Comments
 (0)