-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1584 from hmoazam/make-dspy-primary
New release flow with dspy-ai as a wrapper depending on dspy and dspy…
- Loading branch information
Showing
3 changed files
with
42 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
from setuptools import find_packages, setup | ||
|
||
# Read the content of the README file | ||
with open("README.md", encoding="utf-8") as f: | ||
long_description = f.read() | ||
|
||
setup( | ||
#replace_package_name_marker | ||
name="dspy-ai", | ||
#replace_package_version_marker | ||
version="2.5.3", | ||
description="DSPy", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/stanfordnlp/dsp", | ||
author="Omar Khattab", | ||
author_email="[email protected]", | ||
license="MIT License", | ||
packages=find_packages(include=["dsp.*", "dspy.*", "dsp", "dspy"]), | ||
python_requires=">=3.9", | ||
#replace_dspy_version_marker | ||
install_requires=["dspy==2.5.3"] | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters