-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
36 lines (32 loc) · 1 KB
/
pyproject.toml
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
[project]
name = "stellar-contract-bindings"
version = "0.2.1b0"
description = "CLI tool designed to generate language bindings for Stellar Soroban smart contracts."
readme = "README.md"
requires-python = ">=3.9"
authors = [{ name = "overcat" }]
license = { text = "Apache-2.0" }
keywords = ["stellar", "soroban"]
dependencies = [
"black>=24.10.0",
"click>=8.1.7",
"jinja2>=3.1.4",
"stellar-sdk>=12.0.0",
]
[project.scripts]
stellar-contract-bindings = "stellar_contract_bindings.cli:cli"
[project.urls]
Homepage = "https://github.com/lightsail-network/stellar-contract-bindings"
Changelog = "https://github.com/lightsail-network/stellar-contract-bindings/releases"
Issues = "https://github.com/lightsail-network/stellar-contract-bindings/issues"
CI = "https://github.com/lightsail-network/stellar-contract-bindings/actions"
[dependency-groups]
dev = [
"mypy>=1.13.0",
"pytest-asyncio>=0.24.0",
"pytest>=8.3.3",
"aiohttp>=3.11.8",
"aiohttp-sse-client>=0.2.1",
]
[tool.uv]
package = true