-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
47 lines (46 loc) · 1.5 KB
/
Copy pathsetup.py
File metadata and controls
47 lines (46 loc) · 1.5 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
from setuptools import setup, find_packages
setup(
name="semanticapi",
version="0.2.0",
packages=find_packages(),
python_requires=">=3.10",
install_requires=[
"fastapi>=0.109.0",
"uvicorn[standard]>=0.27.0",
"httpx>=0.26.0",
"python-dotenv>=1.0.0",
"python-multipart>=0.0.9",
"pydantic>=2.5.0",
],
extras_require={
"anthropic": ["anthropic>=0.40.0"],
"openai": ["openai>=1.0.0"],
"all": ["anthropic>=0.40.0", "openai>=1.0.0"],
"dev": ["pytest>=7.0.0", "pytest-cov>=4.0.0"],
},
entry_points={
"console_scripts": [
"semanticapi=semanticapi.server:main",
],
},
include_package_data=True,
package_data={
"": ["providers/*.json"],
},
author="Semantic API Contributors",
description="Natural language interface to any API",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
url="https://github.com/petermtj/semanticapi-engine",
license="AGPL-3.0",
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)