-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathsetup.py
26 lines (25 loc) · 927 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
from setuptools import find_packages, setup
setup(
name="exa_py",
version="1.8.9",
description="Python SDK for Exa API.",
long_description_content_type="text/markdown",
long_description=open("README.md").read(),
author="Exa",
author_email="[email protected]",
package_data={"exa_py": ["py.typed"]},
url="https://github.com/exa-labs/exa-py",
packages=find_packages(),
install_requires=["requests", "typing-extensions", "openai>=1.10.0"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Typing :: Typed",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
],
)