Files
llm-dspy/setup.py
Omar Khattab 840e4a2e76 Version 2.0.3
2023-08-24 06:43:24 -07:00

35 lines
925 B
Python

from setuptools import setup, find_packages
setup(
name="dspy-ai",
version="2.0.3",
description="DSPy",
url="https://github.com/stanfordnlp/dsp",
author="Omar Khattab",
author_email="okhattab@stanford.edu",
license="MIT License",
packages=find_packages(include=['dsp.*', 'dspy.*', 'dsp', 'dspy']),
python_requires='>=3.9',
install_requires=[
"backoff",
"joblib",
"jupyter",
"openai",
"pandas",
"spacy",
"regex",
"ujson",
"tqdm",
"datasets",
],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
],
)