forked from stanfordnlp/dspy
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (30 loc) · 843 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
from setuptools import setup, find_packages
setup(
name="dsp-ml",
version="0.1.1",
description="Demonstrate-Search-Predict",
url="https://github.com/stanfordnlp/dsp",
author="Omar Khattab",
author_email="[email protected]",
license="MIT License",
packages=find_packages(),
python_requires='>=3.8',
install_requires=[
"backoff",
"joblib",
"jupyter",
"openai",
"pandas",
"spacy",
"regex",
],
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",
],
)