-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
76 lines (67 loc) · 2 KB
/
Copy pathpyproject.toml
File metadata and controls
76 lines (67 loc) · 2 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pacificapilot"
version = "0.1.0"
description = "Terminal-native, non-custodial AI trading agent for Pacifica Perpetual Futures"
readme = "README.md"
requires-python = ">=3.11"
license = {text = "MIT"}
authors = [
{name = "Mayur Kulkarni",email = "mayurgk2006@gmail.com"}
]
keywords = ["trading", "ai", "pacifica", "solana", "perpetual-futures"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"requests>=2.31.0",
"solders>=0.21.0",
"base58>=2.1.1",
"anthropic>=0.25.0",
"openai>=1.30.0",
"google-generativeai>=0.5.0",
"prompt-toolkit>=3.0.43",
"rich>=13.7.0",
"textual>=8.0.0",
"textual-autocomplete>=3.0.0",
"InquirerPy>=0.3.4",
]
[project.optional-dependencies]
dev = [
"pytest>=7.4.0",
"pytest-asyncio>=0.21.0",
"pytest-randomly>=3.15.0",
"responses>=0.24.0",
"hypothesis>=6.92.0",
"black>=23.0.0",
"ruff>=0.1.0",
]
telegram = [
"python-telegram-bot>=20.0",
]
memory = [
"supermemory>=3.50.0",
]
[project.scripts]
pacifica = "pacificapilot.cli:main"
[project.urls]
Homepage = "https://github.com/yourusername/pacificapilot"
Documentation = "https://github.com/yourusername/pacificapilot#readme"
Repository = "https://github.com/yourusername/pacificapilot"
[tool.setuptools]
packages = ["pacificapilot", "pacificapilot.core", "pacificapilot.storage", "pacificapilot.providers", "pacificapilot.agents", "pacificapilot.telegram", "pacificapilot.memo", "pacificapilot.ui", "pacificapilot.ui.tui", "pacificapilot.memory"]
[tool.setuptools.package-data]
pacificapilot = ["*.tcss"]
[tool.black]
line-length = 100
target-version = ['py311']
[tool.ruff]
line-length = 100
target-version = "py311"