-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
61 lines (51 loc) · 1.66 KB
/
pyproject.toml
File metadata and controls
61 lines (51 loc) · 1.66 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
[build-system]
requires = ["setuptools>=68.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pine-assistant"
version = "0.3.2"
description = "Pine AI SDK — Let Pine AI handle your digital chores. Socket.IO + REST client."
readme = "README.md"
license = "MIT"
requires-python = ">=3.10"
authors = [{name = "Pine AI"}]
keywords = ["pine-assistant", "pine", "ai", "customer-service", "sdk", "socketio"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Typing :: Typed",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dependencies = [
"python-socketio>=5.11.0",
"httpx>=0.27.0",
"pydantic>=2.0.0",
]
[project.optional-dependencies]
cli = ["click>=8.1.0", "rich>=13.0.0"]
dev = ["pytest>=7.0", "pytest-asyncio>=0.23.0", "ruff>=0.4.0"]
[project.urls]
Homepage = "https://github.com/19PINE-AI/pine-assistant-python"
Repository = "https://github.com/19PINE-AI/pine-assistant-python"
Issues = "https://github.com/19PINE-AI/pine-assistant-python/issues"
[project.scripts]
pine = "pine_assistant.cli.main:main"
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
pine_assistant = ["py.typed"]
[tool.ruff]
target-version = "py310"
line-length = 120
[tool.ruff.lint]
select = ["E", "F", "I", "W", "UP", "B", "SIM"]
ignore = ["E501"]
[tool.ruff.lint.isort]
known-first-party = ["pine_assistant"]
[tool.pytest.ini_options]
asyncio_mode = "auto"