forked from XSpoonAi/spoon-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
39 lines (36 loc) · 1.47 KB
/
Copy pathpyproject.toml
File metadata and controls
39 lines (36 loc) · 1.47 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "spoon-ai-sdk" # Package name, can be changed
version = "0.1.0" # Initial version
authors = [
{ name="Your Name", email="your.email@example.com" }, # Please replace with your info
]
description = "SDK for SpoonAI tools and agents" # A brief description
readme = "README.md" # If you have a README file
# packages = ["spoon_ai"] # REMOVED: Invalid field here
requires-python = ">=3.9" # Specify supported Python version
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License", # Choose an appropriate license
"Operating System :: OS Independent",
]
dependencies = [ # List your project dependencies here, e.g.:
"requests",
"pydantic>=2.0",
"openai",
"python-dotenv",
"fastapi",
"protobuf",
"google-api-core",
"googleapis-common-protos",
]
[project.urls]
"Homepage" = "https://github.com/XSpoonAi/spoon-core" # Project URL
"Bug Tracker" = "https://github.com/XSpoonAi/spoon-core/issues" # Project issue tracker URL
# ADDED: Setuptools configuration to specify the package
[tool.setuptools.packages.find]
where = ["."] # Look in the project root directory
include = ["spoon_ai*"] # Include only the 'spoon_ai' package and its subpackages
exclude = ["tests*", "test*", "cookbook*", "api*", "cli*", "agents*", "models*", "chat_logs*", "migrations*", "react_logs*", "notebooks*"] # Explicitly exclude other top-level dirs