-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (44 loc) · 1.44 KB
/
Copy pathpyproject.toml
File metadata and controls
51 lines (44 loc) · 1.44 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "solvent-agent"
description = "A self-funding analyst agent: earns on Stripe, fulfils with NVIDIA Nemotron, spends within guardrails."
readme = "README.md"
license = { text = "MIT" }
requires-python = ">=3.10"
dynamic = ["version"]
keywords = ["agent", "stripe", "nvidia", "nemotron", "llm", "treasury"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
]
# Core runs on the standard library alone (offline stubs). Everything that
# needs a third-party package is an opt-in extra below.
dependencies = []
[project.optional-dependencies]
stripe = ["stripe>=9.0.0"]
serve = ["fastapi>=0.110.0", "uvicorn[standard]>=0.27.0"]
qr = ["qrcode[pil]>=7.0"]
telegram = ["python-telegram-bot>=21.0"]
dev = ["pytest>=7.0.0"]
all = [
"stripe>=9.0.0",
"fastapi>=0.110.0",
"uvicorn[standard]>=0.27.0",
"qrcode[pil]>=7.0",
"python-telegram-bot>=21.0",
]
[project.scripts]
solvent = "solvent.__main__:main"
[project.urls]
Homepage = "https://github.com/ianalloway/solvent-agent"
Repository = "https://github.com/ianalloway/solvent-agent"
[tool.setuptools.dynamic]
version = { attr = "solvent.__version__" }
[tool.setuptools.packages.find]
include = ["solvent*"]
[tool.setuptools.package-data]
solvent = ["templates/**/*"]