-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (60 loc) · 1.47 KB
/
pyproject.toml
File metadata and controls
70 lines (60 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
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
[project]
name = "allium-cli"
version = "0.3.1"
description = "CLI for Allium blockchain data APIs"
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.12"
authors = [{ name = "Allium", email = "support@allium.so" }]
classifiers = [
"Environment :: Console",
"Framework :: Pydantic :: 2",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Database :: Front-Ends",
]
dependencies = [
"click>=8.1",
"httpx~=0.27",
"pydantic>=2.0",
"questionary>=2.0",
"rich>=13.0",
"tomli-w>=1.0",
"eth-account~=0.13",
"privy-client~=0.5",
"pympp[tempo]==0.4.1",
"rich-click>=1.9.7",
]
[project.urls]
Documentation = "https://docs.allium.so"
Homepage = "https://allium.so"
Repository = "https://github.com/Allium-Science/allium-cli"
[project.scripts]
allium = "cli.main:main"
[dependency-groups]
dev = [
"ruff>=0.5.0",
"pytest>=8.0",
"pre-commit>=4.0",
"commitizen>=4.0",
]
[build-system]
requires = ["hatchling>=1.26"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["cli"]
[tool.ruff]
line-length = 88
target-version = "py312"
[tool.ruff.lint]
select = ["E", "F", "I", "UP"]
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.3.1"
version_files = ["pyproject.toml:^version"]
tag_format = "cli.prod.v$version"
[tool.pyright]
pythonVersion = "3.12"
typeCheckingMode = "basic"