-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
51 lines (47 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
51 lines (47 loc) · 1.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
[project]
name = "opinion-cli"
version = "0.1.0"
description = "Command line interface for Opinion prediction market"
readme = "README.md"
requires-python = ">=3.14"
authors = [
{name = "monakki"},
]
license = {text = "MIT"}
homepage = "https://github.com/monakki/opinion-cli"
repository = "https://github.com/monakki/opinion-cli"
keywords = ["opinion", "prediction", "market", "cli", "trading"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.14",
]
dependencies = [
"click>=8.3.1",
"opinion-clob-sdk>=0.4.3",
"python-dotenv>=1.2.1",
"rich>=14.2.0",
"ruff>=0.14.10",
"aiolimiter>=1.1.0",
"httpx>=0.28.1",
"loguru>=0.7.3",
"pydantic>=2.12.5",
]
[project.scripts]
config = "cli:main"
balance = "cli:main"
positions = "cli:main"
trades = "cli:main"
orders = "cli:main"
help = "cli:main"
markets = "cli:main"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.uv]
package = true
[tool.hatch.build.targets.wheel]
packages = ["clients", "commands", "config", "utils"]
include = ["cli.py"]